tags:

views:

209

answers:

1

When I put my iPhone on the table while running my application it crashes the second after I pick it up.

Below is the crash log. (EXC_BAD_ACCESS)

objc_msgSend
-[UIWindow _shouldAutorotateToInterfaceOrientation:]
-[UIWindow _updateToInterfaceOrientation:duration:force]
-[UIWindow _updateInterfaceOrientationFromDeviceOrientation]
-[UIWindow _handleDeviceOrientationChange:]
_nsnote_callback
__CFXNotificationPost
_CFXNotificationPostNotification
-[NSNotificationCenter postNotificationName:object:userInfo:]
-[UIDevice setOrientation:]
-[UIApplication handleEvent:withNewEvent:]
_[UIApplication sendEvent:]
_UIApplicationHandleEvent 
SendEvent
PurpleEventTimerCallBack
CFRunLoopRunSpecific
CFRunLookRunInMode
GSEventRunModel
GSEventRun
-[UIApplication _run]
UIApplicationMain
main

Have you any idea what's the problem?

A: 

EXC_BAD_ACCESS is usually a sign of too early released memory. Check your memory management.

Georg