2012-07-24 52 views
0

嗨創建一個iOS應用程序,我希望它始終在肖像上運行,即使我把它左/右,我希望它保持不變相關的所有設置相關的一些圖像肖像。Xcode 4.3在肖像中運行應用程序

enter image description here

enter image description here

enter image description here

所以這就是我的一切設定,所以我的問題是如何保持在人像的東西,即使我此刻在運行時將其傾斜它在肖像中打開,但如果我把它左轉,它會旋轉到風景。

在此先感謝我會期待在這裏從你。

回答

1
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{ 

    return (interfaceOrientation == UIInterfaceOrientationPortrait); 
} 

使用此方法只支持肖像模式

+0

不客氣 – 2012-07-24 12:24:58

1

返回YES爲你從這個功能支持任何方向。

(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{ 
    return (interfaceOrientation == UIInterfaceOrientationPortrait); 
} 
相關問題