2012-11-29 79 views
0

可能重複設置接口方向:
shouldAutorotateToInterfaceOrientation is not working in iOS 6上一個UIViewController

我使用的Xcode 4.5,我只需要在包含在其網頁視圖的viewController一個接口實現定位。我如何啓用它。

- (BOOL)shouldAutorotateToInterfaceOrientation在iOS6的

+0

我已經看到了這個帖子,利用這個帖子及以下文卡塔斯方法我仍然不能夠旋轉 –

+0

乾淨的構建,以及仔細檢查.plist設置。 – Raptor

回答

1

似乎不贊成這種API不在iOS 6中的作品了。你無法啓用它。見@Shivan猛禽共享

5

相反的鏈接,您可以使用此UIViewController的

-(BOOL) shouldAutorotate{ 
     return YES; //supports all 
    } 

    -(NSUInteger) supportedInterfaceOrientations{ 

     return UIInterfaceOrientationMaskAllButUpsideDown; //supports all but upside-down 
} 
+0

我這樣做,但它不旋轉 –

+0

有沒有在web視圖中啓用? –

+0

你在使用任何UINavigation控制器或UITabBar控制器在你的應用程序?可以告訴我。 – NSUserDefault

相關問題