Xcode9出現(xiàn)錯(cuò)誤safe area layout guide before ios 9 真正解決辦法
網(wǎng)上有種廣為流傳的錯(cuò)解是不勾選Use Safe Area Layout Guides筹我,如下圖灰框崭篡,會(huì)導(dǎo)致用不了iOS的這個(gè)新功能了,正解是選中控制器燃逻,右邊面板的Builds for 選擇iOS11.0 and Later,如下圖紅框
適配UITableView
if #available(iOS11.0, *) {
self.contentInsetAdjustmentBehavior= .never
self.estimatedRowHeight=0
self.estimatedSectionHeaderHeight=0
self.estimatedSectionFooterHeight=0
}else{
}
UITableView中的sectionHeader或者Footer顯示不正常
方法一:還有的發(fā)現(xiàn)某些界面tableView的sectionHeader卸伞、sectionFooter高度與設(shè)置不符的問(wèn)題,在iOS11中如果不實(shí)現(xiàn)-tableView: viewForHeaderInSection:和-tableView: viewForFooterInSection:,則-tableView: heightForHeaderInSection:和- tableView: heightForFooterInSection:不會(huì)被調(diào)用欲间,導(dǎo)致它們都變成了默認(rèn)高度,這是因?yàn)閠ableView在iOS11默認(rèn)使用Self-Sizing断部,tableView的estimatedRowHeight猎贴、estimatedSectionHeaderHeight、estimatedSectionFooterHeight三個(gè)高度估算屬性由默認(rèn)的0變成了UITableViewAutomaticDimension,解決辦法簡(jiǎn)單粗暴她渴,就是實(shí)現(xiàn)對(duì)應(yīng)方法或把這三個(gè)屬性設(shè)為0达址。
方法二:實(shí)現(xiàn)tableView的頭部和尾部代理方法也可以
適配UIScrollView
if #available(iOS11.0, *) {
scrollView?.contentInsetAdjustmentBehavior= .never
}else{
}
適配網(wǎng)頁(yè)加載不全下面有白邊
if #available(iOS11.0, *) {
webView.scrollView.contentInsetAdjustmentBehavior= .never
}else{
}
XCode9 拖入文件 不自動(dòng)添加 compile sources
XCode9拖入第三方庫(kù)不能自動(dòng)編譯,會(huì)導(dǎo)致類(lèi)似,錯(cuò)誤提示如下:
OBJC_CLASS$_UnityAppController", referenced from: objc-class-ref in AppDelegate.o
這是xcode9的Bug趁耗,可以先用xcode8.3導(dǎo)入后然后在用xcode9打開(kāi)沉唠。不過(guò)xcode9.1已經(jīng)修復(fù)這個(gè)Bug了。
適配iPhoneX的宏
let iPhoneX = (kScreenW == Double(375.0) && kScreenH == Double(812.0) ?
true:false)
let kNavibarH = LL_iPhoneX ? Double(88.0) : Double(64.0)
let kTabbarH = LL_iPhoneX ? Double(49.0+34.0) : Double(49.0)
let kStatusbarH = LL_iPhoneX ? Double(44.0) : Double(20.0)
iPhoneX適配問(wèn)題可以參考1.http://blog.csdn.net/HDFQQ188816190/article/details/78050242?locationNum=3&fps=1
App界面適配iOS11 http://www.reibang.com/p/352f101d6df1
xcode9打包注意事項(xiàng)
xcode9打包版本只能是8.2及以下版本,或者9.0及更高版本
xcode9不支持8.3和8.4版本
xcode9新打包要在構(gòu)建版本的時(shí)候加入1024*1024 AppSore icon和1125px × 2436px (375pt × 812pt @3x)啟動(dòng)圖
官方啟動(dòng)圖和AppSore icon的demo《Application Icons and Launch Images for iOS》