the method
has been overridden in the subclass of uiviewcontroller to always return YES
this subclass is a subview on the window added in the appdelegate
sometimes the rotating methods like
never get called when the device is rotated
sometimes it does
sometimes it just crashes and i can't figure out why
whatever it chooses to do it's consistent.. so if it decides that it doesn't want to call the rotate method then it never will
i'm not sure what's wrong... any hints or tips?
Code:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
this subclass is a subview on the window added in the appdelegate
sometimes the rotating methods like
Code:
- (void)willAnimateSecondHalfOfRotationFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation duration:(NSTimeInterval)duration
sometimes it does
sometimes it just crashes and i can't figure out why
whatever it chooses to do it's consistent.. so if it decides that it doesn't want to call the rotate method then it never will
i'm not sure what's wrong... any hints or tips?