shouldAutorotateToInterfaceOrientation is definitely being called... but when I rotate the iphone... or the simulator... nothing changes.
I thought all I had to do was this:
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
NSLog(@"this is being called ok");
return(YES); // Or return(TRUE);
}
But I guess there is something else I need to set????