2013-08-03 85 views
0

對於視圖控制器,我使用以下代碼將方向限制爲橫向。爲什麼縱向內容顯示在橫向內部?

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{ 
    // Return YES for supported orientations 
    return UIInterfaceOrientationIsLandscape(interfaceOrientation); 
} 

但是,顯示的結果是不正確的

它顯示了景觀窗內的畫像內容。

可能的原因是什麼?

+0

必須設置爲子視圖幀根據景觀或使用自動版式http://www.raywenderlich.com/20881/beginning-auto -layout-part-1-of-2 – iSpark

+0

嗨,你是在做一個特定的視圖還是希望整個應用程序處於橫向模式。 – Ranjit

回答

0

從您的info.plist中刪除不需要的方向或者只是去通過自動佈局在IOS

相關問題