ビューコントローラーAとビューコントローラーBという2つのビューコントローラーがあるアプリケーションがあります。ビューコントローラーBをポートレートモードで表示したいのですが、現在はランドスケープモードで表示されています。コード:
これはviewcontrollerAのサブミットコードです
-(IBAction)submit
{
LoginNewViewController *lvc =[[LoginNewViewController alloc] initWithNibName:@"LoginNewViewController" bundle:[NSBundle mainBundle]];
[self presentModalViewController:lvc animated:YES];
}
これはviewcontrollerB用です
- (BOOL)shouldAutorotate
{
return NO;
}
- (NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationMaskPortrait| UIInterfaceOrientationMaskPortraitUpsideDown);
}