IOS6.0中怎么禁止横屏

IOS6.0中如何禁止横屏??3、更改登陆界面的LoginController.m文件中原有的shouldAutorotateToInterfaceOrien

IOS6.0中如何禁止横屏

?


IOS6.0中怎么禁止横屏
?

3、更改登陆界面的LoginController.m文件中原有的shouldAutorotateToInterfaceOrientation方法如下:

- (BOOL)shouldAutorotateToInterfaceOrientation:UIInterfaceOrientation)interfaceOrientation{return UIInterfaceOrientationIsPortrait(interfaceOrientation);}

??

?更改后,应用程序在IOS5,IOS6真机中皆运行正常,在所有应用程序竖屏界面禁止横屏。