iOS12唠叛、iOS11、iOS10沮稚、iOS9常見(jiàn)適配
@(IOS各個(gè)版本適配)
[TOC]
一艺沼、iOS12(Xcode10)
1.1、升級(jí)Xcode10后項(xiàng)目報(bào)錯(cuò)
不允許多個(gè)info.plist
Xcode10是默認(rèn)選中的最新的New Build System(Default)
壮虫,在這個(gè)編譯系統(tǒng)的環(huán)境下澳厢,不允許多個(gè)info.plist
解決辦法一:(推薦)
把build system
切換到 Legacy Build System
,換言之就是切換成老的編譯系統(tǒng)囚似,就OK了剩拢。Xcode->File->Project Settings-> Build System -> Legacy Build System.
<figcaption style="display: block; text-align: center; font-size: 1rem; line-height: 1.6; color: rgb(144, 144, 144); margin-top: 2px;"></figcaption>
<figcaption style="display: block; text-align: center; font-size: 1rem; line-height: 1.6; color: rgb(144, 144, 144); margin-top: 2px;"></figcaption>
解決辦法二:
刪除其他info.plist文件。
iOS 12移除了libstdc++, 用libc++替代
Xcode10中l(wèi)ibstdc++相關(guān)的3個(gè)庫(kù)(libstdc++饶唤、libstdc++.6徐伐、libstdc++6.0.9)應(yīng)該都是被徹底廢棄了,如果你使用的三方庫(kù)中有依賴募狂,請(qǐng)盡快和提供方溝通办素,告知他們遷移吧。如果自己開(kāi)發(fā)使用祸穷,也盡快考慮遷移的事宜吧性穿。
1.2、iPhone XR不支持3D-Touch
OC檢測(cè)代碼
if (self.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable) {
}
復(fù)制代碼
swift檢測(cè)代碼
self.traitCollection.forceTouchCapability == .availible
復(fù)制代碼
二雷滚、iOS11(Xcode9)
2.1需曾、安全區(qū)域(SafeArea)
iOS11為
UIViewController
和UIView
增加了兩個(gè)新的屬性safeAreaInsets
和safeAreaLayoutGuide
-
safeAreaInsets
適用于手動(dòng)計(jì)算. -
safeAreaLayoutGuide
適用于自動(dòng)布局.
UIViewController中新增:
- (void)viewSafeAreaInsetsDidChange;
UIView中新增:
- (void)viewSafeAreaInsetsDidChange;
復(fù)制代碼
在
Storyboard
使用Safe Area
最低只支持iOS9
,iOS8
的用戶就要放棄了
<figcaption style="display: block; text-align: center; font-size: 1rem; line-height: 1.6; color: rgb(144, 144, 144); margin-top: 2px;"></figcaption>
當(dāng)
UIViewController
調(diào)用- (void)viewDidLoad
時(shí)它的所有子視圖的safeAreaInsets
屬性都等于UIEdgeInsetsZero
。
viewSafeAreaInsetsDidChange
的調(diào)用時(shí)機(jī)如下:
- 1思犁、
viewDidLoad
- 2、
viewWillAppear
- 3谋减、
viewSafeAreaInsetsDidChange
- 4、
viewWillLayoutSubviews
- 5扫沼、
viewDidAppear
只有在調(diào)用
viewSafeAreaInsetsDidChange
后出爹,才能獲得view
以及viewController
的SafeArea(UIEdgeInsets)
。因此在viewDidload
中根據(jù)SafeArea
設(shè)置界面會(huì)有問(wèn)題充甚。
iPhone X:有導(dǎo)航欄的時(shí)候可以+44
豎屏 safeAreaInsets
= (top
= 44, left
= 0, bottom
= 34, right
= 0)
橫屏 safeAreaInsets
= (top
= 0, left
= 44, bottom
= 21, right
= 44)
#import "Adaptive11VC.h"
static inline UIEdgeInsets sgm_safeAreaInset(UIView *view) {
if (@available(iOS 11.0, *)) {
return view.safeAreaInsets;
}
return UIEdgeInsetsZero;
}
@interface Adaptive11VC ()
@end
@implementation Adaptive11VC
- (void)viewDidLoad {
[super viewDidLoad];
}
- (void)testSafeArea {
UIEdgeInsets safeAreaInsets = sgm_safeAreaInset(self.view);
NSLog(@"safeAreaInsets = %@", NSStringFromUIEdgeInsets(safeAreaInsets));
}
- (void)viewSafeAreaInsetsDidChange {
[super viewSafeAreaInsetsDidChange];
[self testSafeArea];
}
@end
復(fù)制代碼
2.2以政、UIScrollView
iOS 11廢棄了UIViewController
的automaticallyAdjustsScrollViewInsets
屬性,新增了contentInsetAdjustmentBehavior
屬性伴找,所以當(dāng)超出安全區(qū)域時(shí)系統(tǒng)自動(dòng)調(diào)整了SafeAreaInsets
盈蛮,進(jìn)而影響了adjustedContentInset
,在iOS11中決定tableView
內(nèi)容與邊緣距離的是adjustedContentInset
技矮,所以需要設(shè)置UIScrollView
的contentInsetAdjustmentBehavior
屬性抖誉。
// 方式一:(不推薦)修改額外的安全區(qū)域
if (@available(iOS 11.0, *)) {
self.additionalSafeAreaInsets = UIEdgeInsetsMake(-44, 0, 0, 0);
}
else {
// Fallback on earlier versions
}
// 方式二:(推薦)設(shè)置為不自動(dòng)調(diào)整
if (@available(iOS 11.0, *)) {
// 作用于指定的UIScrollView
self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
// 作用與所有的UIScrollView
UIScrollView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}
else {
self.automaticallyAdjustsScrollViewInsets = NO;
}
復(fù)制代碼
2.3殊轴、tableview問(wèn)題
iOS11開(kāi)始UITableView
開(kāi)啟了自動(dòng)估算行高,estimatedRowHeight``estimatedSectionHeaderHeight
estimatedSectionFooterHeight
三個(gè)高度估算屬性由默認(rèn)的0變成了UITableViewAutomaticDimension
袒炉,如果不實(shí)現(xiàn)-tableView: viewForFooterInSection:
和 -tableView: viewForHeaderInSection:
旁理,那么estimatedRowHeight
estimatedSectionHeaderHeight
estimatedSectionFooterHeight
三個(gè)高度估算屬性由默認(rèn)的0變成了UITableViewAutomaticDimension
,導(dǎo)致高度計(jì)算不對(duì)我磁,會(huì)產(chǎn)生空白孽文。解決方法是實(shí)現(xiàn)對(duì)應(yīng)方法或吧這三個(gè)屬性設(shè)為0。
2.4夺艰、LocalAuthentication 本地認(rèn)證
本地認(rèn)證框架提供了從具有指定安全策略(密碼或生物學(xué)特征)的用戶請(qǐng)求身份驗(yàn)證的功能芋哭。例如,要求用戶僅使用Face ID或Touch ID進(jìn)行身份驗(yàn)證郁副,可使用以下代碼:
#import <LocalAuthentication/LocalAuthentication.h>
/**
檢測(cè)TouchID是否可用
*/
- (void)checkBiometrics {
LAContext *context = [[LAContext alloc] init];
BOOL success = [context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
error:nil];
if ( success ) {
NSLog(@"can use");
}
else {
NSLog(@"can`t use ");
}
}
/**
在驗(yàn)證TouchID可用的情況下使用
*/
- (void)excuteBiometrics {
LAContext *context = [[LAContext alloc] init];
context.localizedFallbackTitle = @"自定義標(biāo)題";
[context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
localizedReason:@"為什么使用TouchID寫(xiě)這里"
reply:^(BOOL success, NSError * _Nullable error) {
if ( success ) {
// 指紋驗(yàn)證成功
}
else {
switch (error.code) {
case LAErrorUserFallback:{
NSLog(@"用戶選擇輸入密碼");
break;
}
case LAErrorAuthenticationFailed:{
NSLog(@"驗(yàn)證失敗");
break;
}
case LAErrorUserCancel:{
NSLog(@"用戶取消");
break;
}
case LAErrorSystemCancel:{
NSLog(@"系統(tǒng)取消");
break;
}
// 以下三種情況如果提前檢測(cè)TouchID是否可用就不會(huì)出現(xiàn)
case LAErrorPasscodeNotSet:{
break;
}
case LAErrorTouchIDNotAvailable:{
break;
}
case LAErrorTouchIDNotEnrolled:{
break;
}
default:
break;
}
}
}];
}
復(fù)制代碼
2.5减牺、啟動(dòng)圖的適配
方法一:通過(guò)LaunchScreen.storyboard方式啟動(dòng)
方法二:使用Assets中的LaunchImage
<figcaption style="display: block; text-align: center; font-size: 1rem; line-height: 1.6; color: rgb(144, 144, 144); margin-top: 2px;"></figcaption>
- 給Brand Assets添加一張1125*2436大小的圖片
- 打開(kāi)Assets.xcassets文件夾,找到Brand Assets
- 右鍵Show in Finder
- 添加一張1125*2436大小的圖片
- 修改Contents.json文件,添加如下內(nèi)容
{
"extent" : "full-screen",
"idiom" : "iphone",
"subtype" : "2436h",
"filename" : "1125_2436.png",
"minimum-system-version" : "11.0",
"orientation" : "portrait",
"scale" : "3x"
}
復(fù)制代碼
2.6存谎、定位相關(guān)
在 iOS 11 中必須支持
When In Use
授權(quán)模式(NSLocationWhenInUseUsageDescription
)拔疚,在 iOS 11 中,為了避免開(kāi)發(fā)者只提供請(qǐng)求 Always 授權(quán)模式這種情況既荚,加入此限制稚失,如果不提供When In Use
授權(quán)模式,那么Always
相關(guān)授權(quán)模式也無(wú)法正常使用恰聘。
如果要支持老版本墩虹,即 iOS 11 以下系統(tǒng)版本,那么建議在 info.plist 中配置所有的 Key(即使 NSLocationAlwaysUsageDescription
在 iOS 11及以上版本不再使用):
NSLocationWhenInUseUsageDescription
NSLocationAlwaysAndWhenInUseUsageDescription
NSLocationAlwaysUsageDescription
NSLocationAlwaysAndWhenInUseUsageDescription // 為 iOS 11 中新引入的一個(gè) Key憨琳。
復(fù)制代碼
2.7、iOS11中 UIKit’s Bars 上的變化
三旬昭、iOS10(Xcode8)
3.1篙螟、(Why?Safe问拘!)插件取消
Xcode8取消了三方插件(很多優(yōu)秀的插件遍略,本來(lái)可以顯著提高效率)的功能,使用Extension代替 Xcode 8 Extension 推薦
3.2骤坐、證書(shū)問(wèn)題
為了方便用戶來(lái)管理绪杏,提供Automatically manage signing
。需要輸入開(kāi)發(fā)者賬號(hào)纽绍!如果沒(méi)有賬號(hào)也沒(méi)關(guān)系蕾久,在下面也可以選擇Debug
、Realease
拌夏、inHouse
模式下對(duì)應(yīng)的證書(shū)也可以僧著!
3.3履因、隱私數(shù)據(jù)訪問(wèn)問(wèn)題
iOS10,蘋(píng)果加強(qiáng)了對(duì)隱私數(shù)據(jù)的保護(hù)盹愚,要對(duì)隱私數(shù)據(jù)權(quán)限做一個(gè)適配栅迄,iOS10調(diào)用相機(jī),訪問(wèn)通訊錄皆怕,訪問(wèn)相冊(cè)等都要在info.plist中加入權(quán)限訪問(wèn)描述毅舆,不然之前你們的項(xiàng)目涉及到這些權(quán)限的地方就會(huì)直接crash掉。
解決辦法: 只需要在info.plist
添加NSContactsUsageDescription
的key
, value
自己隨意填寫(xiě)就可以,這里列舉出對(duì)應(yīng)的key(Source Code模式下):
<key>NSPhotoLibraryUsageDescription</key><string>App需要您的同意,才能訪問(wèn)相冊(cè)</string>
<key>NSCameraUsageDescription</key><string>App需要您的同意,才能訪問(wèn)相機(jī)</string>
<key>NSMicrophoneUsageDescription</key><string>App需要您的同意,才能訪問(wèn)麥克風(fēng)</string>
<key>NSLocationUsageDescription</key><string>App需要您的同意,才能訪問(wèn)位置</string>
<key>NSLocationWhenInUseUsageDescription</key><string>App需要您的同意,才能在使用期間訪問(wèn)位置</string>
<key>NSLocationAlwaysUsageDescription</key><string>App需要您的同意,才能始終訪問(wèn)位置</string>
<key>NSCalendarsUsageDescription</key><string>App需要您的同意,才能訪問(wèn)日歷</string>
<key>NSRemindersUsageDescription</key><string>App需要您的同意,才能訪問(wèn)提醒事項(xiàng)</string>
<key>NSMotionUsageDescription</key><string>App需要您的同意,才能訪問(wèn)運(yùn)動(dòng)與健身</string>
<key>NSHealthUpdateUsageDescription</key><string>App需要您的同意,才能訪問(wèn)健康更新 </string>
<key>NSHealthShareUsageDescription</key><string>App需要您的同意,才能訪問(wèn)健康分享</string>
<key>NSBluetoothPeripheralUsageDescription</key><string>App需要您的同意,才能訪問(wèn)藍(lán)牙</string>
<key>NSAppleMusicUsageDescription</key><string>App需要您的同意,才能訪問(wèn)媒體資料庫(kù)</string>
復(fù)制代碼
隱私數(shù)據(jù) | 對(duì)應(yīng)key值 |
---|---|
相冊(cè) | NSPhotoLibraryUsageDescription |
相機(jī) | NSCameraUsageDescription |
麥克風(fēng) | NSMicrophoneUsageDescription |
位置 | NSLocationUsageDescription |
在使用期間訪問(wèn)位置 | NSLocationWhenInUseUsageDescription |
始終訪問(wèn)位置 | NSLocationAlwaysUsageDescription |
日歷 | NSCalendarsUsageDescription |
提醒事項(xiàng) | NSRemindersUsageDescription |
運(yùn)動(dòng)與健身 | NSMotionUsageDescription |
健康更新 | NSHealthUpdateUsageDescription |
健康分享 | NSHealthShareUsageDescription |
藍(lán)牙 | NSBluetoothPeripheralUsageDescription |
媒體資料庫(kù) | NSAppleMusicUsageDescription |
3.4愈腾、跳轉(zhuǎn)到app內(nèi)的隱私數(shù)據(jù)設(shè)置頁(yè)面
iOS 10 干掉了所有系統(tǒng)設(shè)置的 URL Scheme憋活,這意味著你再也不可能直接跳轉(zhuǎn)到系統(tǒng)設(shè)置頁(yè)面(比如 WiFi、蜂窩數(shù)據(jù)顶滩、定位等)余掖。
跳轉(zhuǎn)方式
方式一:prefs:root=某項(xiàng)服務(wù) 適用于 小于 iOS10的系統(tǒng); NSURL *url = [NSURL URLWithString:@"prefs:root=WIFI"];
方式二:prefs:root=bundleID 適用于 大于等于iOS8系統(tǒng)礁鲁,小于iOS10的系統(tǒng) NSURL *url = [NSURL URLWithString:@"prefs:root=bundleID"];
方式三:UIApplicationOpenSettingsURLString 適用于 大于等于iOS8的系統(tǒng) NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
// iOS系統(tǒng)版本 >= 10.0
{
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
if ([[UIApplication sharedApplication] canOpenURL:url]) {
[[UIApplication sharedApplication] openURL:url];
}
}
return;
// iOS系統(tǒng)版本 >= 10.0
// But! 不建議這樣做哦盐欺,官方文檔中說(shuō)過(guò):
// `URL is now considered a private API and use will result in app rejection`.
// 雖然是有可能躲過(guò)蘋(píng)果的檢測(cè),但是蘋(píng)果如果發(fā)現(xiàn)你這樣用了仅醇,app上架是有被拒的風(fēng)險(xiǎn)的.
{
NSURL *url = [NSURL URLWithString:@"APP-Prefs:root=WIFI"];
if ([[UIApplication sharedApplication] canOpenURL:url]) {
if (@available(iOS 10.0, *)) {
[[UIApplication sharedApplication] openURL:url
options:@{}
completionHandler:nil];
} else {
// Fallback on earlier versions
}
}
}
// iOS系統(tǒng)版本 < 10.0
{
NSURL *url = [NSURL URLWithString:@"prefs:root=WIFI"];
if ([[UIApplication sharedApplication] canOpenURL:url]) {
[[UIApplication sharedApplication] openURL:url];
}
}
復(fù)制代碼
跳轉(zhuǎn)目的地
- iOS系統(tǒng)版本 <= iOS7 , 只能跳轉(zhuǎn)到 系統(tǒng)設(shè)置頁(yè)面
- iOS系統(tǒng)版本 >= iOS8 冗美,支持跳轉(zhuǎn)到第三方應(yīng)用的設(shè)置界面中。使用
prefs:root=bundleID ,bundleID
是你第三方應(yīng)用工程的唯一ID - iOS系統(tǒng)版本 >= iOS10析二,支持跳轉(zhuǎn)到自己應(yīng)用設(shè)置粉洼,不支持跳轉(zhuǎn)到系統(tǒng)設(shè)置
3.5、字體變化
蘋(píng)果的默認(rèn)字體會(huì)隨著iOS系統(tǒng)版本的不同而不同叶摄,iOS10中字體變大了属韧。導(dǎo)致了原來(lái)的顯示有問(wèn)題,會(huì)造成...的出現(xiàn)蛤吓。暫時(shí)沒(méi)有好的解決辦法宵喂,需要自己在一個(gè)個(gè)適配一下!
3.6会傲、UICollectionViewCell的的優(yōu)化
<input checked="" disabled="" type="checkbox" style="font-family: inherit; font-size: inherit; font-style: inherit; font-variant-caps: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; overflow: visible; box-sizing: border-box; padding: 0px;"> 在iOS 10 之前,cell只能從重用隊(duì)列里面取出,再走一遍生命周期,并調(diào)用cellForItemAtIndexPath創(chuàng)建或者生成一個(gè)cell.
<input checked="" disabled="" type="checkbox" style="font-family: inherit; font-size: inherit; font-style: inherit; font-variant-caps: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; overflow: visible; box-sizing: border-box; padding: 0px;"> 在iOS 10 中,系統(tǒng)會(huì)cell保存一段時(shí)間,也就是說(shuō)當(dāng)用戶把cell滑出屏幕以后,如果又滑動(dòng)回來(lái),cell不用再走一遍生命周期了,只需要調(diào)用willDisplayCell方法就可以重新出現(xiàn)在屏幕中了.
<input checked="" disabled="" type="checkbox" style="font-family: inherit; font-size: inherit; font-style: inherit; font-variant-caps: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; overflow: visible; box-sizing: border-box; padding: 0px;"> iOS 10 中,系統(tǒng)是一個(gè)一個(gè)加載cell的,二以前是一行一行加載的,這樣就可以提升很多性能;
<input checked="" disabled="" type="checkbox" style="font-family: inherit; font-size: inherit; font-style: inherit; font-variant-caps: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; overflow: visible; box-sizing: border-box; padding: 0px;"> iOS 10 新增加的Pre-Fetching預(yù)加載
3.7锅棕、UIRefreshControl
在iOS 10 中, UIRefreshControl可以直接在UICollectionView和UITableView中使用,并且脫離了UITableViewController.現(xiàn)在RefreshControl是UIScrollView的一個(gè)屬性.
3.8、UserNotifications(用戶通知)
<input checked="" disabled="" type="checkbox" style="font-family: inherit; font-size: inherit; font-style: inherit; font-variant-caps: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; overflow: visible; box-sizing: border-box; padding: 0px;"> iOS 10所有相關(guān)通知被統(tǒng)一到了UserNotifications.framework框架中淌山。增加了撤銷(xiāo)裸燎、更新、中途還可以修改通知的內(nèi)容泼疑。通知不在是簡(jiǎn)單的文本了德绿,可以加入視頻、圖片,自定義通知的展示等等脆炎。
<input checked="" disabled="" type="checkbox" style="font-family: inherit; font-size: inherit; font-style: inherit; font-variant-caps: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; overflow: visible; box-sizing: border-box; padding: 0px;"> iOS 10相對(duì)之前的通知來(lái)說(shuō)更加好用易于管理梅猿,并且進(jìn)行了大規(guī)模優(yōu)化,對(duì)于開(kāi)發(fā)者來(lái)說(shuō)是一件好事秒裕。
<input checked="" disabled="" type="checkbox" style="font-family: inherit; font-size: inherit; font-style: inherit; font-variant-caps: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; overflow: visible; box-sizing: border-box; padding: 0px;"> iOS 10開(kāi)始對(duì)于權(quán)限問(wèn)題進(jìn)行了優(yōu)化袱蚓,申請(qǐng)權(quán)限就比較簡(jiǎn)單了(本地與遠(yuǎn)程通知集成在一個(gè)方法中)。
四几蜻、iOS9(Xcode7)
4.1喇潘、Bitcode
Xcode7 默認(rèn)啟用 Bitcode,但是如果我們用到的第三方庫(kù)編譯時(shí)還沒(méi)啟用 Bitcode梭稚,主工程就會(huì)編譯不過(guò)颖低。Bitcode 是蘋(píng)果 App Thinning 的機(jī)制之一,可以減少安裝包的大小弧烤。App store 會(huì)將這個(gè) Bitcode 編譯為可執(zhí)行的64位或32位程序忱屑。
解決辦法一: 最簡(jiǎn)單的解決辦法是先把 Bitcode 關(guān)掉:把 Build settings - Build Options - Enable Bitcode 改為 NO。
<figcaption style="display: block; text-align: center; font-size: 1rem; line-height: 1.6; color: rgb(144, 144, 144); margin-top: 2px;"></figcaption>
解決辦法二: 移除不支持BitCode的平臺(tái)SDK暇昂,或者尋找支持BitCode的替代品莺戒,或者聯(lián)系SDK方支持BitCode。
4.2急波、HTTP 請(qǐng)求失敗
iOS9 默認(rèn)不支持 HTTP 請(qǐng)求从铲,需要改用更安全的 HTTPS(默認(rèn)用 TLS 1.2)。蘋(píng)果還提供了配置澄暮,使得所有安全性更低的網(wǎng)絡(luò)請(qǐng)求也能使用名段,解決方案就是在 info.plist 里面增加以下配置:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
復(fù)制代碼
如果復(fù)雜一些,還可以指定白名單域名泣懊,聲明所支持 TLS 的最低版本伸辟。另外需要注意的是,即使寫(xiě)了上述配置馍刮,在 HTTPS 頁(yè)面中自娩,HTTP 的 javascript 或 css 不會(huì)被加載,因?yàn)樘O(píng)果認(rèn)為這降低了頁(yè)面的安全性渠退。
4.3、canOpenUrl 限制
canOpenUrl 可以用來(lái)判斷用戶是否安裝了某個(gè) APP脐彩。也許是出于用戶隱私的考慮碎乃,iOS9 上對(duì) canOpenUrl 做了限制,最多只能對(duì) 50 個(gè) scheme 做判斷惠奸。如果是用 Xcode7 編譯梅誓,需要在 plist 里面聲明這些 scheme,沒(méi)有聲明的會(huì)直接返回 NO:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>weixin</string>
<string>wechat</string>
</array>
復(fù)制代碼
4.4、UIStatusBar的問(wèn)題
iOS9中廢棄的方法
// 修改狀態(tài)欄的樣式為白色
// 'setStatusBarStyle(_:animated:)' was deprecated in iOS 9.0: Use -[UIViewController preferredStatusBarStyle]
UIApplication.shared.setStatusBarStyle(.lightContent, animated: true)
// 隱藏狀態(tài)欄
// 'setStatusBarHidden(_:with:)' was deprecated in iOS 9.0: Use -[UIViewController prefersStatusBarHidden]
UIApplication.shared.setStatusBarHidden(true, with: .fade)
復(fù)制代碼
用下面兩個(gè)方法替換
-[UIViewController preferredStatusBarstyle]
-[UIViewController preferredStatusBarHidden]
復(fù)制代碼
參考資料:
iOS 10 適配知識(shí)點(diǎn)總結(jié)
聊聊iOS 10更新以后跳轉(zhuǎn)系統(tǒng)設(shè)置的幾種方式
iOS 10 調(diào)用系統(tǒng)"設(shè)置"里的功能(全)