おはようございます! 私はPortaitオリエンテーションでアプリケーションを開発しています。アプリの残りの部分を混乱させることなく1つのビューの向きを残して残しておく方法があれば、私はさまよっていました。強制的なインターフェイスの向きアプリケーションの残りの部分がポートレートモードの場合、viewController上の風景
は私がまた...
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
//return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
が、運と... IBでビューコントローラの向きが横に設定されているが、私はアプリを実行すると、それがポートレートモードに登場し続ける
を返してみました運と[[UIApplication sharedApplication]setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];
を設定しようとした...
すべてのヘルプは大歓迎されます。
ありがとうございます。
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeLeft];それは警告を与えるが、それは動作します – Narayana