0
在我的項目設置中,我將支持的接口方向作爲兩個橫向。支持的接口方向和shouldAutorotateToInterfaceOrientation
我還應該在每個視圖控制器下面實現嗎?
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
如果你想在iOS 6中支持ios <6 – 2013-03-26 05:14:15
,那麼這些方法不同於其他任何東西 – Kasaname 2013-03-26 05:15:25
@j_mcnally,所以只需在應用程序設置中指定是不夠的
Saran
2013-03-26 05:35:32