On Wed, 17 Mar 2010 21:05:06 -0700, Lynn Barton said:

>the app quits, I get a "multiple validation errors occured" message. The
>console has no error messages.

Stick this in your app delegate:

- (NSError*)application:(NSApplication*)application
   willPresentError:(NSError*)error
{
        if (error)
        {
                NSDictionary* userInfo = [error userInfo];
                NSLog (@"encountered the following error: %@", userInfo);
                Debugger();
        }
        
        return error;
}

--
____________________________________________________________
Sean McBride, B. Eng                 s...@rogue-research.com
Rogue Research                        www.rogue-research.com
Mac Software Developer              Montréal, Québec, Canada


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to