2009-09-30 9 views
1

Lorsque je mets mon iPhone sur la table pendant l'exécution de mon application, il plante la seconde après que je l'ai ramassé.EXC_BAD_ACCESS (Je change d'orientation)

Voici le journal des pannes. (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 

Vous avez une idée de ce qu'est le problème?

+0

Une partie du code serait bien. –

Répondre

0

EXC_BAD_ACCESS est généralement un signe de mémoire trop tôt libéré. Vérifiez votre gestion de la mémoire.

Questions connexes