On Jan 31, 2011, at 11:16 PM, David Rowland wrote:
> Is there something that defeats the delivery of rotate events to a view
> controller?
This may or may not be the case with your app, but a UITabBarController vetoes
device orientation change events to its managed view controllers unless every
I create a minimal view-based app from an Xcode template, and I implement these
UIViewController methods,
-
(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
}
-
(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterface