我做了一个只需要肖像的应用程序:
我在Plist文件中设置了肖像,在Project Infos中,我尝试了一切,但我的应用程序仍然改变了方向 我的应用程序在Appdelegate中使用 ShSideBarController ,然后使用4个视图,这是tableviewcontroller
请帮帮我。 谢谢
答案 0 :(得分:1)
尝试将此代码放在viewcontrollers中:
//for iOS6
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
-(BOOL) shouldAutorotate
{
return YES;
}