我正在爲iOS 5開發一個應用程序,它必須以橫向模式運行。我的問題是,我不能讓它翻轉。強制iOS應用程序在橫向模式下啓動
我曾嘗試加入「初始界面方向」設置爲「風景(右home鍵)」 並添加下面的方法來我的視圖控制器:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
我可以環繞它如何我的頭應該工作。 (我發現代碼here)
我也想知道如何使用Xcode 4.2項目設置中提供的「支持的設備方向」,它似乎沒有做任何事情。
我一直在尋找的網站和各地一直沒能找到解決我的問題的例子。
謝謝。
http://stackoverflow.com/a/17628668/468724 –