我做了一個應用程序至極只需進行縱向:的iOS 6 - 強制肖像模式只工作不
我成立了畫像的plist文件,在項目的相關信息,我都試過了,但我的應用程序還是改變方向 我的應用程序中的appdelegate使用ShSideBarController然後4次,至極的tableviewcontroller
請幫助我。 感謝
我做了一個應用程序至極只需進行縱向:的iOS 6 - 強制肖像模式只工作不
我成立了畫像的plist文件,在項目的相關信息,我都試過了,但我的應用程序還是改變方向 我的應用程序中的appdelegate使用ShSideBarController然後4次,至極的tableviewcontroller
請幫助我。 感謝
嘗試把這個代碼在你viewcontrollers:
//for iOS6
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
-(BOOL) shouldAutorotate
{
return YES;
}
感謝您!你是我的救星! – 2013-05-11 23:02:10
很高興爲您效勞。請接受答案..幫助我:) – TonyMkenu 2013-05-12 00:12:46
你也改變屏幕方位目標 - >總結? – lvp 2013-05-10 15:02:23
是的,我做到了! .. – 2013-05-11 17:07:10
那麼...任何更新? – TonyMkenu 2013-05-17 13:07:27