我使用storyboard創建了UIViewController並將其鏈接到UIViewController類。支持故事板中UIViewController的縱向模式
我想使我的UIViewController只支持肖像方向,我試過吹碼,但它似乎不起作用。我的UIViewController仍然旋轉。
我是否需要更改故事板中的任何屬性?
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return ((interfaceOrientation == UIInterfaceOrientationPortrait) || (interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown));
}
我試過了,但它仍在旋轉......我是否需要在故事板中做任何事情? – user836026 2013-03-27 16:32:22
在您的項目設置中,您只能將支持的方向設置爲肖像。 – nsgulliver 2013-03-27 16:36:01
是的,但我有其他的UIViewController需要支持橫向模式。 – user836026 2013-03-27 16:38:14