0
を動作しません:のObjective-C:ローテーション方法は、私は回転のためにこれらのメソッドを実装していますが、彼らは動作しません
-(BOOL)shouldAutorotate {
return NO;
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskLandscape;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{
return UIInterfaceOrientationLandscapeRight;
}
私が風景に一つだけのビューを強制的に回転をロックしたいのですが、アプリはこのメソッドをキャッチしない、と私は理由を知らない。どんな解決策ですか? youar appdelegateで
あなたが回転させたくないビューは 'UINavigationController'に埋め込まれていますか? –
はい、それは重要ですか? @BhavinRamani – David
はい、私を助けたこのリンクを見てください:http://stackoverflow.com/questions/21216594/disable-rotation-for-view-controller-in-navigation-controller –