Using the following code gives me nothing… My view rotates. Can’t understand it…
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
}
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
NSLog(@"I am starting to rotate");
}
Thanks…
This may be due to the way your VC is nested inside a heirarchy of VC’s.
This SO post should help you out: