(1)若是應用程序始終隱藏 status bar 那麼恭喜呢,你在UI上須要的改動不多不多。php
(2)若是應用程序顯示status bar,能夠講status bar設置成黑色不透明 ,而後在UIViewController 中加入下面的判斷,git
#define IOS7_OR_LATER ( [[[UIDevice currentDevice] systemVersion] compare:@"7.0"] != NSOrderedAscending )github
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000
if ( IOS7_OR_LATER )
{
self.edgesForExtendedLayout = UIRectEdgeNone;
self.extendedLayoutIncludesOpaqueBars = NO;
self.modalPresentationCapturesStatusBarAppearance = NO;
}
#endif // #if __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000xcode
(3)若是勾選了Hide during application lauch 的話,在IOS7 的設備上,是沒有問題的,app
啓動完之後status bar 會從新出現的,可是在IOS7 一下的設備,須要在launch didfinish 裏面把status bar 顯示出來。ide
(4)能夠經過設置view的背景顏色來改變 status bar 的顏色來搭配你的nav 條。spa
(5) 有些地方肯能要對版本進行判斷,分別作不一樣的處理。code
(6) 能夠用舊版的sdk來編譯,這樣在真機上仍是和原來同樣的效果。具體的方法能夠參考:http://github.kimziv.com/blog/2013/09/22/how-to-use-older-base-sdks-in-xcode5/blog
在iOS 8中,[UIScreen bounds] 、[UIScreen applicationFrame] 、Status bar、Keyboard這些frame都是根據設備真實方向來返回frame的,而在iOS 7中,不過是橫屏仍是豎屏,iOS老是返回豎屏的frame,如如下輸出:get
iOS 7:
iOS 8:
這就對某些支持橫屏的App形成了困擾,其實也只須要加兩個宏或者改造一下就好了:
雖然 contentInset 不屬於屏幕適配的內容,可是我仍是放在屏幕適配裏說一下。iOS8 和 iOS7 對 automaticallyAdjustsScrollViewInsets 屬性的解釋不同: