Hi,
I´m getting the folowing back tracing error:
Code:
#0 0x902be688 in objc_msgSend ()
#1 0x30506515 in NSPopAutoreleasePool ()
#2 0x309013d7 in _UIApplicationHandleEvent ()
#3 0x32054375 in PurpleEventCallback ()
#4 0x30245560 in CFRunLoopRunSpecific ()
#5 0x30244628 in CFRunLoopRunInMode ()
#6 0x308f904c in -[UIApplication _run] ()
#7 0x30901f2e in UIApplicationMain ()
The app crashes just after viewDidLoad has finished (my NSLog message at the very end of viewDidLoad is sent to the debugging window). viewWillAppear does not get called, but shouldAutoRotateToInterfaceOrientation does.
I've read elsewhere that this is a typical error if you manually release an object that you've already autoreleased, but I haven't autoreleased anything.
Anyone that's seen something similar?