簡單寫一些梢杭、還在摸索中...
1.升級(jí)iOS11后造成的變化
?1. 1升級(jí)后另凌,發(fā)現(xiàn)某個(gè)擁有tableView的界面錯(cuò)亂看幼,組間距和contentInset錯(cuò)亂席覆,因?yàn)閕OS11中UIViewController的automaticallyAdjustsScrollViewInsets屬性被廢棄了直砂,因此當(dāng)tableView超出安全區(qū)域時(shí)菌仁,系統(tǒng)自動(dòng)會(huì)調(diào)整SafeAreaInsets值,進(jìn)而影響adjustedContentInset值
// 有些界面以下使用代理方法來設(shè)置静暂,發(fā)現(xiàn)并沒有生效
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;
// 這樣的原理是因?yàn)橹爸皇菍?shí)現(xiàn)了高度的代理方法济丘,卻沒有實(shí)現(xiàn)View的代理方法,iOS10及以前這么寫是沒問題的洽蛀,iOS11開啟了行高估算機(jī)制引起的bug摹迷,因此有以下幾種解決方法:
// 解決方法一:添加實(shí)現(xiàn)View的代理方法,只有實(shí)現(xiàn)下面兩個(gè)方法郊供,方法 (CGFloat)tableView: heightForFooterInSection: 才會(huì)生效
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
return nil;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
return nil;
}
// 解決方法二:直接使用tableView屬性進(jìn)行設(shè)置,修復(fù)該UI錯(cuò)亂
self.tableView.sectionHeaderHeight = 0;
self.tableView.sectionFooterHeight = 5;
[_optionTableView setContentInset:UIEdgeInsetsMake(-35, 0, 0, 0)];
// 解決方法三:添加以下代碼關(guān)閉估算行高
self.tableView.estimatedRowHeight = 0;
self.tableView.estimatedSectionHeaderHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
1.2 如果使用了Masonry 進(jìn)行布局峡碉,就要適配safeArea
? ? ? ? ? ?if ([UIDevice currentDevice].systemVersion.floatValue >= 11.0) {
? ? ? ? ?make.edges.equalTo(self.view.safeAreaInsets);
? ? ? ? ? } else {
? ? ? ? ? make.edges.equalTo(self.view);
? ? ? ? }
1.3 對(duì)于IM的發(fā)送原圖功能,iOS11啟動(dòng)全新的HEIC 格式的圖片驮审,iPhone7以上設(shè)備+iOS11排出的live照片是".heic"格式圖片鲫寄,同一張live格式的圖片吉执,iOS10發(fā)送就沒問題(轉(zhuǎn)成了jpg),iOS11就不行
? ? ? 微信的處理方式是一比一轉(zhuǎn)化成jpg格式
? ? ?QQ和釘釘?shù)奶幚矸绞绞侵苯訅嚎s地来,即使是原圖也壓縮為非原圖
? ? ?微信的逼格太高戳玫,沒找到現(xiàn)成的方法,我采用的是QQ 的方案
2未斑、使用Xcode9 編譯后發(fā)現(xiàn)的問題
? ?2.1 發(fā)現(xiàn)“fastSocket”第三方報(bào)錯(cuò)咕宿,具體原因是缺少C99的頭文件,引入“#include ”即可
?2.2 導(dǎo)航欄的新特性
? ? 原生的搜索欄樣式發(fā)生改變
查看 API 后發(fā)現(xiàn),iOS11后將searchController賦值給了NavigationItem载城,通過屬性hidesSearchBarWhenScrolling可以控制搜索欄是否在滑動(dòng)的時(shí)候進(jìn)行隱藏和顯示
// A view controller that will be shown inside of a navigation controller can assign a UISearchController to this property to display the search controller’s search bar in its containing navigation controller’s navigation bar.
@property (nonatomic, retain, nullable) UISearchController *searchController API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(tvos);
// If this property is true (the default), the searchController’s search bar will hide as the user scrolls in the top view controller’s scroll view. If false, the search bar will remain visible and pinned underneath the navigation bar.
@property (nonatomic) BOOL hidesSearchBarWhenScrolling API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(tvos);
另外肌似,UINavigationBar新增屬性 BOOL值prefersLargeTitles來實(shí)現(xiàn)下面的效果,并可以通過largeTitleTextAttributes來設(shè)置大標(biāo)題的文本樣式诉瓦。設(shè)置大標(biāo)題之后川队,導(dǎo)航欄的高度就會(huì)由之前的64pt變成 96pt,如果項(xiàng)目中有直接寫死的高度或者隱藏導(dǎo)航欄之類的操作睬澡,就需要適配一下
有個(gè)界面使用到了導(dǎo)航欄按鈕相關(guān)的frame固额,也發(fā)生了UI錯(cuò)亂,查看UI層級(jí)關(guān)系后發(fā)現(xiàn)煞聪,iOS11以前是直接把按鈕加到了UINavigationBar上面斗躏,而iOS11則是先將按鈕加到了_UITAMICAdaptorView,再加到_UIButtonBarStackView昔脯、_UINavigationBarContentView治宣,接著才是UINavigationBar矾克。因此如果需要獲取導(dǎo)航欄按鈕 frame 或者 superView,這里需要專門做下適配
3.iPhone X的適配
? ?下載完Xcode9之后,第一件事自然是在 iPhone X(模擬器)上過把癮鹏秋,然后編譯后就發(fā)現(xiàn)報(bào)錯(cuò)了
? ?由于iPhone X的狀態(tài)欄是和其他版本手機(jī)差異比較大的覆旭,因此api 變化也比較大
? ?先后做了以下適配
? 適配點(diǎn)一:項(xiàng)目中使用狀態(tài)欄中圖標(biāo)判斷當(dāng)前網(wǎng)絡(luò)的具體狀態(tài)
打印的 Log 報(bào)出以下錯(cuò)誤: Trapped uncaught exception 'NSUnknownKeyException', reason: '[ valueForUndefinedKey:]: this class is not key value coding-compliant for the key foregroundView.'
// 測(cè)試代碼
#import
NSMutableString *resultStr = [NSMutableString string];
//獲取指定類的Ivar列表及Ivar個(gè)數(shù)
unsignedintcount = 0;
Ivar *member = class_copyIvarList([[application valueForKeyPath:@"_statusBar"]class], &count);
for(inti = 0; i < count; i++){
Ivar var = member[i];
//獲取Ivar的名稱
constchar*memberAddress = ivar_getName(var);
//獲取Ivar的類型
constchar*memberType = ivar_getTypeEncoding(var);
NSString *str = [NSString stringWithFormat:@"key = %s?????? type = %s \n",memberAddress,memberType];
[resultStr appendString:str];
}
NSLog(@"%@", resultStr);
使用 runtime 打印其所有屬性蓬网,發(fā)現(xiàn)以下差異
// 測(cè)試代碼
#import
NSMutableString *resultStr = [NSMutableString string];
//獲取指定類的Ivar列表及Ivar個(gè)數(shù)
unsigned int count = 0;
Ivar *member = class_copyIvarList([[application valueForKeyPath:@"_statusBar"] class], &count);
for(int i = 0; i < count; i++){
Ivar var = member[i];
//獲取Ivar的名稱
const char *memberAddress = ivar_getName(var);
//獲取Ivar的類型
const char *memberType = ivar_getTypeEncoding(var);
NSString *str = [NSString stringWithFormat:@"key = %s? ? ? ? ? ? type = %s
\n",memberAddress,memberType];
[resultStr appendString:str];
}
NSLog(@"%@", resultStr);
// 其他版本的手機(jī)
key = _inProcessProvider? ? ? ? ? ? type = @""
key = _backgroundView? ? ? ? ? ? ? type = @"UIStatusBarBackgroundView"
key = _doubleHeightLabel? ? ? ? ? ? type = @"UILabel"
key = _doubleHeightLabelContainer? type = @"UIView"
key = _currentDoubleHeightText? ? ? type = @"NSString"
key = _currentRawData? ? ? ? ? ? ? type = {超長螟碎。。}
key = _interruptedAnimationCompositeViews? type = @"NSMutableArray"
key = _newStyleBackgroundView? ? ? type = @"UIStatusBarBackgroundView"
key = _newStyleForegroundView? ? ? type = @"UIStatusBarForegroundView"
key = _slidingStatusBar? ? ? ? ? ? type = @"UIStatusBar"
key = _styleAttributes? ? ? ? ? ? ? type = @"UIStatusBarStyleAttributes"
key = _waitingOnCallbackAfterChangingStyleOverridesLocally? type = B
key = _suppressGlow? ? ? ? ? ? ? ? type = B
key = _translucentBackgroundAlpha? type = d
key = _showOnlyCenterItems? ? ? ? ? type = B
key = _foregroundViewShouldIgnoreStatusBarDataDuringAnimation? type = B
key = _tintColor? ? ? ? ? ? ? ? ? ? type = @"UIColor"
key = _lastUsedBackgroundColor? ? ? type = @"UIColor"
key = _nextTintTransition? ? ? ? ? type = @"UIStatusBarStyleAnimationParameters"
key = _overrideHeight? ? ? ? ? ? ? type = @"NSNumber"
key = _disableRasterizationReasons? type = @"NSMutableSet"
key = _timeHidden? ? ? ? ? ? ? ? ? type = B
key = _statusBarWindow? ? ? ? ? ? ? type = @"UIStatusBarWindow"
// iPhone X
key = _statusBar ; type = @"_UIStatusBar"
// 因此可見iPhone X的狀態(tài)欄是多嵌套了一層鲸拥,多取一次即可拐格,最終適配代碼為:
NSArray *children;
// 不能用 [[self deviceVersion] isEqualToString:@"iPhone X"] 來判斷,因?yàn)閕Phone X 的模擬器不會(huì)返回 iPhone X
if ([[application valueForKeyPath:@"_statusBar"] isKindOfClass:NSClassFromString(@"UIStatusBar_Modern")]) {
children = [[[[application valueForKeyPath:@"_statusBar"] valueForKeyPath:@"_statusBar"] valueForKeyPath:@"foregroundView"] subviews];
} else {
children = [[[application valueForKeyPath:@"_statusBar"] valueForKeyPath:@"foregroundView"] subviews];
}
3.2解決這個(gè)問題后項(xiàng)目跑起來發(fā)現(xiàn)刑赶,整個(gè)app界面上下各空出大概40pt的高度
會(huì)發(fā)現(xiàn)底部 UITabBar 是高出一些高度禁荒,查看層級(jí)關(guān)系后發(fā)現(xiàn),同樣是由于安全區(qū)的原因角撞,UITabBar 高度由49pt變成了83pt呛伴,因此這里也要對(duì)iPhone X 及其模擬器進(jìn)行適配
3.3:iPhone X 只有 faceID,沒有touchID谒所,如果in的應(yīng)用有使用到 touchID 解鎖的地方热康,這里要根據(jù)機(jī)型進(jìn)行相應(yīng)的適配
3.4:之前有偷懶的直接使用20替代狀態(tài)欄高度,這些坑都要通過重新獲取狀態(tài)欄高度
? ? ? ?CGRectGetHeight([UIApplication sharedApplication].statusBarFrame)
3.5:然而iPhone X更大的坑是屏幕的適配
首先看下屏幕尺寸
這張圖反映出不少信息:
iPhone X的寬度雖然和7是一樣的劣领,但是高度多出145pt
使用三倍圖是重點(diǎn)姐军,而且一般認(rèn)為肉眼所能所能識(shí)別的最高的屏幕密度是300ppi,iPhone X已達(dá)到458ppi(查證發(fā)現(xiàn)三星galaxy系列的屏幕密度是522ppi)
在設(shè)計(jì)方面尖淘,蘋果官方文檔有明確要求奕锌,下面結(jié)合圖例進(jìn)行說明:
上面這張圖內(nèi)含信息略多
頭部導(dǎo)航欄不予許進(jìn)行用戶交互的,意味著下面這兩種情況 Apple 官方是不允許的
底部虛擬區(qū)是替代了傳統(tǒng)home鍵村生,高度為34pt惊暴,通過上滑可呼起多任務(wù)管理,考慮到手勢(shì)沖突趁桃,這部分也是不允許有任何可交互的控件辽话,但是設(shè)計(jì)的背景圖要覆蓋到非安全區(qū)域
狀態(tài)欄在非安全區(qū)域,文檔中也提到卫病,除非可以通過隱藏狀態(tài)欄給用戶帶來額外的價(jià)值油啤,否則最好把狀態(tài)欄還給用戶
重復(fù)使用現(xiàn)有圖片時(shí),注意長寬比差異蟀苛。iPhone X 與常規(guī) iPhone 的屏幕長寬比不同益咬,因此,全屏的 4.7 寸屏圖像在 iPhone X 上會(huì)出現(xiàn)裁切或適配寬度顯示帜平。所以幽告,這部分的視圖需要根據(jù)設(shè)備做出適配。
3.6:設(shè)備信息
if ([deviceString isEqualToString:@"iPhone10,1"])? return @"iPhone 8";
if ([deviceString isEqualToString:@"iPhone10,4"])? return @"iPhone 8";
if ([deviceString isEqualToString:@"iPhone10,2"])? return @"iPhone 8 Plus";
if ([deviceString isEqualToString:@"iPhone10,5"])? return @"iPhone 8 Plus";
if ([deviceString isEqualToString:@"iPhone10,3"])? return @"iPhone X";
if ([deviceString isEqualToString:@"iPhone10,6"])? return @"iPhone X";