自從Notification被引入之後,蘋果就不斷的更新優化,但這些更新優化只是小打小鬧,直至現在iOS 10開始真正的進行大改重構,這讓開發者也體會到
UserNotifications的易用,功能也變得非常強大。
iOS 9 以前的通知
1.在調用方法時,有些方法讓人很難區分,容易寫錯方法,這讓開發者有時候很苦惱。
2.應用在運行時和非運行時捕獲通知的路徑還不一致。
3.應用在前台時,是無法直接顯示遠程通知,還需要進一步處理。
4.已經發出的通知是不能更新的,內容發出時是不能改變的,並且只有簡單文本展示方式,擴展性根本不是很好。
iOS 10 開始的通知
1.所有相關通知被統一到了
UserNotifications.framework框架中。
2.增加了撤銷、更新、中途還可以修改通知的內容。
3.通知不在是簡單的文本了,可以加入視頻、圖片,自定義通知的展示等等。
4.iOS 10相對之前的通知來說更加好用易於管理,並且進行了大規模優化,對於開發者來說是一件好事。
5.iOS 10開始對於權限問題進行了優化,申請權限就比較簡單了(本地與遠程通知集成在一個方法中)。
2.ATS的問題
iOS 9中默認非HTTS的網絡是被禁止的,當然我們也可以把
NSAllowsArbitraryLoads設置為
YES禁用
ATS。不過iOS 10從2017年1月1日起蘋果不允許我們通過這個方法跳過
ATS,也就是說強制我們用
HTTPS,如果不這樣的話提交App可能會被拒絕。但是我們可以通過
NSExceptionDomains來針對特定的域名開放
HTTP可以容易通過審核。
3.iOS 10 隱私權限設置
iOS 10 開始對隱私權限更加嚴格,如果你不設置就會直接崩潰,現在很多遇到崩潰問題了,一般解決辦法都是在
info.plist文件添加對應的
Key-
Value就可以了。
上圖的
訪問相冊的
Key添加錯了,正確的是
Privacy - Photo Library Usage Description。
以上
Value值,圈出的紅線部分的文字是展示給用戶看的,必須添加。目前解決辦法基本都一樣
4.Xcode 8 運行一堆沒用的logs解決辦法
上圖我們看到,自己新建的一個工程啥也沒干就打印一堆爛七八糟的東西,我覺得這個應該是
Xcode 8的問題,具體也沒細研究,解決辦法是設置
OS_ACTIVITY_MODE : disable如下圖:
5.iOS 10 UIStatusBar方法過期:
在我們開發中有可能用到
UIStatusBar一些屬性,在iOS 10 中這些方法已經過期了,如果你的項目中有用的話就得需要適配。上面的圖片也能發現,如果在iOS 10中你需要使用
preferredStatusBar比如這樣:
//iOS 10
- (UIStatusBarStyle)preferredStatusBarStyle {
return UIStatusBarStyleDefault;
}
6.iOS 10 UICollectionView 性能優化
隨著開發者對
UICollectionView的信賴,項目中用的地方也比較多,但是還是存在一些問題,比如有時會卡頓、加載慢等。所以iOS 10 對
UICollectionView進一步的優化,因為敘述起來比較復雜耗費時間
7.iOS 10 UIColor 新增方法
以下是官方文檔的說明:
Most graphics frameworks throughout the system, including Core Graphics, Core Image, Metal, and AVFoundation, have substantially improved support for extended-range pixel formats and wide-gamut color spaces. By extending this behavior throughout the entire graphics stack, it is easier than ever to support devices with a wide color display. In addition, UIKit standardizes on working in a new extended sRGB color space, making it easy to mix sRGB colors with colors in other, wider color gamuts without a significant performance penalty.
Here are some best practices to adopt as you start working with Wide Color.
In iOS 10, the UIColor class uses the extended sRGB color space and its initializers no longer clamp raw component values to between 0.0 and 1.0. If your app relies on UIKit to clamp component values (whether you’re creating a color or asking a color for its component values), you need to change your app’s behavior when you link against iOS 10.When performing custom drawing in a UIView on an iPad Pro (9.7 inch), the underlying drawing environment is configured with an extended sRGB color space.If your app renders custom image objects, use the new UIGraphicsImageRenderer class to control whether the destination bitmap is created using an extended-range or standard-range format.If you are performing your own image processing on wide-gamut devices using a lower level API, such as Core Graphics or Metal, you should use an extended range color space and a pixel format that supports 16-bit floating-point component values. When clamping of color values is necessary, you should do so explicitly.Core Graphics, Core Image, and Metal Performance Shaders provide new options for easily converting colors and images between color spaces.
因為之前我們都是用
RGB來設置顏色,反正用起來也不是特別多樣化,這次新增的方法應該就是一個彌補吧。所以在iOS 10 蘋果官方建議我們使用
sRGB,因為它性能更好,色彩更豐富。如果你自己為
UIColor寫了一套分類的話也可嘗試替換為
sRGB,
UIColor類中新增了兩個
Api如下:
+ (UIColor *)colorWithDisplayP3Red:(CGFloat)displayP3Red green:(CGFloat)green blue:(CGFloat)blue alpha:(CGFloat)alpha NS_AVAILABLE_IOS(10_0);
- (UIColor *)initWithDisplayP3Red:(CGFloat)displayP3Red green:(CGFloat)green blue:(CGFloat)blue alpha:(CGFloat)alpha NS_AVAILABLE_IOS(10_0);
8.iOS 10 UITextContentType
// The textContentType property is to provide the keyboard with extra information about the semantic intent of the text document.
@property(nonatomic,copy) UITextContentType textContentType NS_AVAILABLE_IOS(10_0); // default is nil
在iOS 10
UITextField添加了
textContentType枚舉,指示文本輸入區域所期望的語義意義。
使用此屬性可以給鍵盤和系統信息,關於用戶輸入的內容的預期的語義意義。例如,您可以指定一個文本字段,用戶填寫收到一封電子郵件確認
uitextcontenttypeemailaddress。當您提供有關您期望用戶在文本輸入區域中輸入的內容的信息時,系統可以在某些情況下自動選擇適當的鍵盤,並提高鍵盤修正和主動與其他文本輸入機會的整合。
9.iOS 10 字體隨著手機系統字體而改變
當我們手機系統字體改變了之後,那我們
App的
label也會跟著一起變化,這需要我們寫很多代碼來進一步處理才能實現,但是iOS 10 提供了這樣的屬性
adjustsFontForContentSizeCategory來設置。因為沒有真機,具體實際操作還沒去實現,如果理解錯誤幫忙指正。
UILabel *myLabel = [UILabel new];
/*
UIFont 的preferredFontForTextStyle: 意思是指定一個樣式,並讓字體大小符合用戶設定的字體大小。
*/
myLabel.font =[UIFont preferredFontForTextStyle: UIFontTextStyleHeadline];
/*
Indicates whether the corresponding element should automatically update its font when the device’s UIContentSizeCategory is changed.
For this property to take effect, the element’s font must be a font vended using +preferredFontForTextStyle: or +preferredFontForTextStyle:compatibleWithTraitCollection: with a valid UIFontTextStyle.
*/
//是否更新字體的變化
myLabel.adjustsFontForContentSizeCategory = YES;
10.iOS 10 UIScrollView新增refreshControl
iOS 10 以後只要是繼承
UIScrollView那麼就支持刷新功能:
@property (nonatomic, strong, nullable) UIRefreshControl *refreshControl NS_AVAILABLE_IOS(10_0) __TVOS_PROHIBITED;
11.iOS 10 判斷系統版本正確姿勢
判斷系統版本是我們經常用到的,尤其是現在大家都有可能需要適配iOS 10,那麼問題就出現了,如下圖:
我們得到了答案是:
//值為 1
[[[[UIDevice currentDevice] systemVersion] substringToIndex:1] integerValue]
//值為10.000000
[[UIDevice currentDevice] systemVersion].floatValue,
//值為10.0
[[UIDevice currentDevice] systemVersion]
所以說判斷系統方法最好還是用後面的兩種方法,哦~我忘記說了
[[UIDevice currentDevice] systemVersion].floatValue這個方法也是不靠譜的,好像在
8.3版本輸出的值是
8.2,記不清楚了反正是不靠譜的,所以建議大家用
[[UIDevice currentDevice] systemVersion]這個方法!
Swift判斷如下:
if #available(iOS 10.0, *) {
// iOS 10.0
print("iOS 10.0");
} else { }
12.Xcode 8 插件不能用的問題
大家都升級了
Xcode 8,但是對於插件依賴的開發者們,一邊哭著一邊去網上尋找解決辦法。
但是看到文章最後的解釋,我們知道如果用插件的話,可能安全上會有問題、並且提交審核會被拒絕,所以建議大家還是不要用了,解決辦法總是有的,比如在
Xcode中添加注釋的代碼塊也是很方便的。
13.iOS 10開始項目中有的文字顯示不全問題
我用
Xcode 8 和
Xcode 7.3分別測試了下
創建一個
Label然後讓它自適應大小,字體大小都是
17最後輸出的寬度是不一樣的,我們再看一下,下面的數據就知道為什麼升級
iOS 10 之後
App中有的文字顯示不全了:
Xcode 8打印
Xcode 7.3打印
1個文字寬度:17.5
1個文字寬度:17
2個文字寬度:35
2個文字寬度:34
3個文字寬度:52
3個文字寬度:51
4個文字寬度:69.5
4個文字寬度:68
5個文字寬度:87
5個文字寬度:85
6個文字寬度:104
6個文字寬度:102
7個文字寬度:121.5
7個文字寬度:119
8個文字寬度:139
8個文字寬度:136
9個文字寬度:156
9個文字寬度:153
10個文字寬度:173.5
10個文字寬度:170
英文字母會不會也有這種問題,我又通過測試,後來發現英文字母沒有問題,只有漢字有問題。目前只有一個一個修改控件解決這個問題,暫時沒有其他好辦法來解決。