私はiOSで新しく、回転に関する問題に直面しています。シングルビューコントローラの回転をポートレートでロックするだけです。私は風景の中に、この目的のCの肖像画の回転方向をロックする方法
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:NO];
[UIView setAnimationsEnabled:NO];
NSNumber *value = [NSNumber numberWithInt:UIInterfaceOrientationLandscapeRight];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];
}
そして、この作品の罰金のようなコードを使用していますが、portrait.Howに、私は肖像画のためにこれを使用することができません。私はこのようなポートレート方法を試みました。
- UIInterfaceOrientationMaskPortrait
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationMaskPortraitUpsideDown しかし、私にとってはどれも仕事。前もって感謝します!
http://stackoverflow.com/questions/26357162/how-これを試してみてくださいto-force-view-controller-orientation-in-ios-8 –
@UmairAfzalこれは私が使ったものと同じです。 – Muju
iOSのバージョンは何ですか? –