在iOS6中,shouldAutorotateToInterfaceOrientation已弃用。我试图使用 supportedInterfaceOrientations和shouldAutorotate 制作应用程序的自转,但未能正常工作。
我不想旋转此ViewController,但是它不起作用。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
-(BOOL)shouldAutorotate
{
return NO;
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
有任何想法吗?感谢您的任何帮助!
慕的地8271018
浮云间
相关分类