可能重複設置接口方向:
shouldAutorotateToInterfaceOrientation is not working in iOS 6上一個UIViewController
我使用的Xcode 4.5,我只需要在包含在其網頁視圖的viewController一個接口實現定位。我如何啓用它。
- (BOOL)shouldAutorotateToInterfaceOrientation
在iOS6的
可能重複設置接口方向:
shouldAutorotateToInterfaceOrientation is not working in iOS 6上一個UIViewController
我使用的Xcode 4.5,我只需要在包含在其網頁視圖的viewController一個接口實現定位。我如何啓用它。
- (BOOL)shouldAutorotateToInterfaceOrientation
在iOS6的
似乎不贊成這種API不在iOS 6中的作品了。你無法啓用它。見@Shivan猛禽共享
相反的鏈接,您可以使用此UIViewController的
-(BOOL) shouldAutorotate{
return YES; //supports all
}
-(NSUInteger) supportedInterfaceOrientations{
return UIInterfaceOrientationMaskAllButUpsideDown; //supports all but upside-down
}
我這樣做,但它不旋轉 –
有沒有在web視圖中啓用? –
你在使用任何UINavigation控制器或UITabBar控制器在你的應用程序?可以告訴我。 – NSUserDefault
我已經看到了這個帖子,利用這個帖子及以下文卡塔斯方法我仍然不能夠旋轉 –
乾淨的構建,以及仔細檢查.plist設置。 – Raptor