Re: Storing Data
Re: Storing Data
- Subject: Re: Storing Data
- From: Chris Hanson <email@hidden>
- Date: Wed, 22 Aug 2007 22:25:57 -0700
On Aug 22, 2007, at 10:13 PM, Dallas Brown wrote:
Thanks for the response.
Maybe you can help me with another issue...
Please ask separate questions in separate threads, it's easier to get
help that way because people will be more easily able to see at a
glance whether they'll know the answer.
I am getting the following runtime error:
[13306:d03] *** +[ItemView superview]: selector not recognized
[13306:d03] *** Uncaught exception: <NSInvalidArgumentException> ***
+[ItemView superview]: selector not recognized
Not sure even where this is happening...
You'll need to post more of your code. It looks like you have a class
method (such as +initialize) that's doing [self superview] in your
ItemView class.
Also, to break on Objective-C exceptions, set symbolic breakpoints in
Xcode on the following:
-[NSException raise]
objc_exception_throw
The former is the legacy mechanism for raising exceptions, the latter
is what is generated by the @throw construct by the compiler. In both
cases you will then break into the debugger when your application
encounters an exception.
-- Chris
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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:
This email sent to email@hidden