設置支持的屏幕方向有兩個級別,一個是app級別的,另外一個是viewController級別的。html
app 級別的能夠在[target]-[general]-[device orientation]裏面設置,app
默認狀況下Upside Down沒有勾選,其餘都勾選了。ide
(爲何Upside Down不推薦勾選呢,由於iPhone的電話app是不支持Upside Down的,若是你的app支持Upside Down,萬一用戶在用你的app的時候Upside Down了,這時候來了電話,就會看到整個來電的畫面是顛倒的,用戶體驗很很差。一貫注重用戶體驗的蘋果是不推薦你勾選Upside Down的)post
viewController級別的就是在各個viewController裏面設置了。url
這裏有一點須要注意,viewController的設置受app級別設置的限制,也就是viewController可以設置的屏幕方向只能是在app級別中勾選的一種或多種,沒有勾選的是不能設置的。好比上面的Upside Down沒有勾選,那麼viewController也就不能設置Upside Down的方向。htm
那麼在viewController裏面怎麼設置屏幕方向呢?blog
iOS6之前:文檔
// 設置屏幕只支持豎向
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}get
從iOS6開始,上面的方法已經被拋棄,有了3個新的方法:
it
// 不支持屏幕旋轉
- (BOOL)shouldAutorotate
{
return NO;
}
// 只支持豎向
- (NSUInteger)supportedInterfaceOrientations{
return UIInterfaceOrientationPortrait;
}
// 畫面一開始加載時就是豎向
// - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
// return UIInterfaceOrientationPortrait;
// }
若是iOS6以前的版本也對應,那麼被拋棄的那個方法也須要加上去。
可是,iOS8.3開始,在有UIAlertView的viewController裏面,彈出UIAlertView的時候會崩潰,Log信息以下:
Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation',
reason: 'Supported orientations has no common orientation with the application,
and [_UIAlertShimPresentingViewController shouldAutorotate] is returning YES'
經過查閱官方文檔,發現supportedInterfaceOrientations方法的返回值是UIInterfaceOrientationMask類型的,因此應該用UIInterfaceOrientationMaskPortrait。UIInterfaceOrientationMask類型從iOS6就有了,只不過到iOS8.3纔會崩潰。
至於preferredInterfaceOrientationForPresentation方法,返回值仍是老的UIInterfaceOrientation類型。