縦向きのみをサポートするViewcontrollerの1つ。私のデバイスでは、回転するとステータスバーが横向きに回転します。ビューの残りの部分はポートレート モードのままです。ステータスバーの回転を防ぎたい。この問題は IOS7 でのみ発生しています
// Overridden function to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
// iPhone: support only upright portrait
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
else
{
// iPad: any orientation is OK
return YES;
}
}
// For iOS6.0 Rotate
- (BOOL)shouldAutorotate
{
return NO;
}