iPhone5(iOS6)での回転禁止

iPhone5になってから、回転禁止の方法が変わった。

下記のコードで回転禁止できるらしい

// ios6 サポート向き
– (NSUInteger)supportedInterfaceOrientations {
//return UIInterfaceOrientationMaskAll;
return UIInterfaceOrientationMaskPortrait;
}

// ios6 ロテート許可
– (BOOL)shouldAutorotate {
//return YES;
return NO;
}

情報ソースURL
http://pikab1.blog.fc2.com/