IOS7適配

(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:

 

  1. 豎屏:  
  2. UIScreen.mainScreen().bounds: (0.0,0.0,320.0,568.0)  
  3. 橫屏:  
  4. UIScreen.mainScreen().bounds: (0.0,0.0,320.0,568.0)  

iOS 8:

 

 

  1. 豎屏:  
  2. UIScreen.mainScreen().bounds: (0.0,0.0,320.0,568.0)  
  3. 橫屏:  
  4. UIScreen.mainScreen().bounds: (0.0,0.0,568.0,320.0)  

這就對某些支持橫屏的App形成了困擾,其實也只須要加兩個宏或者改造一下就好了:

 

 

  1. #define SCREEN_WIDTH        (getScreenSize().width)  
  2. #define SCREEN_HEIGHT       (getScreenSize().height)  
  1. CGSize getScreenSize() {  
  2.     CGSize screenSize = [UIScreen mainScreen].bounds.size;  
  3.     if ((NSFoundationVersionNumber <= NSFoundationVersionNumber_iOS_7_1) &&  
  4.         UIInterfaceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation)) {  
  5.         return CGSizeMake(screenSize.height, screenSize.width);  
  6.     }  
  7.     return screenSize;  
  8. }  

 

雖然 contentInset 不屬於屏幕適配的內容,可是我仍是放在屏幕適配裏說一下。iOS8 和 iOS7 對 automaticallyAdjustsScrollViewInsets 屬性的解釋不同:

 

  • iOS8 會把該屬性的影響做用到 controller 的 view 的 subviews 上
  • iOS7 僅會做用到 self.view 上
另外當你還須要手動調用 contentInset 的時候,iOS7 彷佛就不會自動調整了。解決辦法就是將 automaticallyAdjustsScrollViewInsets 設置爲 NO,而後本身控制 contentInset
引用地址
http://www.cocoachina.com/bbs/read.php?tid=274004 
相關文章
相關標籤/搜索