On Jul 6, 2009, at 2:27 PM, Luke the Hiesterman wrote:

On Jul 6, 2009, at 1:25 PM, DKJ wrote:

Any idea why the app is refusing to restart? This is what I get in the Apple report:

 Exception Type:  EXC_BREAKPOINT (SIGTRAP)
 Exception Codes: 0x0000000000000002, 0x0000000000000000
 Crashed Thread:  0

 Application Specific Information:
 iPhone Simulator 3.0 (138), iPhone OS 2.2.1 (5H11)
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[UITableViewCell initWithStyle:reuseIdentifier:]: unrecognized selector sent to instance 0x530f10'

Does this mean that the message listed is being sent to something that isn't a UITableViewCell? Is there away I can use that instance number to track down that something?

Yes, that error means the object you're using at that moment is not a UITableViewCell, since UITableViewCell obviously responds to to initWithStyle:reuseIdentifier:.

Not exactly. The instance was a UITableViewCell at the time the exception was created; the class name in the description comes from the object itself. Possible errors include a memory smasher (that hit the Objective-C runtime's data structures), or a race (the pointer was not a UITableViewCell at the time the message was sent, but became one before the exception was created).

The Object Allocation instrument can be configured to record the history of the bad address. NSZombie may find memory management errors.


--
Greg Parker     gpar...@apple.com     Runtime Wrangler


_______________________________________________

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