在寫App的引導(dǎo)界面的時(shí)候遇到了這個(gè)問題,其實(shí)很早以前就遇到了這個(gè)問題,當(dāng)時(shí)就是只是用一句代碼就可以去搞定怠噪。
if #available(iOS 11.0, *) {
scrollView.contentInsetAdjustmentBehavior = .never
}
在UIViewController中有一個(gè)屬性
@available(iOS, introduced: 7.0, deprecated: 11.0, message: "Use UIScrollView's contentInsetAdjustmentBehavior instead")
open var automaticallyAdjustsScrollViewInsets: Bool // Defaults to YES
此屬性的默認(rèn)值為true,這使得當(dāng)有滾動(dòng)視圖插入,UIViewController會(huì)去考慮狀態(tài)欄晤柄、搜索欄、導(dǎo)航欄妖胀、工具欄或標(biāo)簽欄所消耗的屏幕區(qū)域芥颈。如果UIViewController自己管理滾動(dòng)視圖的插入調(diào)整,則將此屬性設(shè)置為false赚抡。
而在iOS11中UIViewController的這個(gè)屬性已經(jīng)被廢除爬坑,轉(zhuǎn)而代替它的是的ScrollView的兩個(gè)屬性:
open var adjustedContentInset: UIEdgeInsets { get }
open var contentInsetAdjustmentBehavior: UIScrollViewContentInsetAdjustmentBehavior
首先來看看安全區(qū)域safeAreaInsets,官方文檔解釋如下:
安全區(qū)域就是不被狀態(tài)欄怕品、搜索欄妇垢、導(dǎo)航欄、工具欄或標(biāo)簽欄所消耗的屏幕區(qū)域所覆蓋肉康。safeAreaInsets這個(gè)屬性其實(shí)指的就是一個(gè)view距離該view的安全區(qū)域的邊距闯估。如果一個(gè)view全部在它父視圖的安全區(qū)域內(nèi),則SafeAreaInsets值為(0,0,0,0)吼和。如果多了一個(gè)信號(hào)欄涨薪,那SafeAreaInset值為(20,0,0,0)。
var adjustedContentInset: UIEdgeInsets { get }
這是我們前面提到過的ScrollView的一個(gè)屬性炫乓,使用此屬性獲得在其中繪制內(nèi)容的調(diào)整區(qū)域刚夺。簡(jiǎn)單來說就是我們ScrollerView中呈現(xiàn)的內(nèi)容需要上下左右調(diào)整多少會(huì)由這個(gè)屬性來進(jìn)行控制。iOS11以前ScrollView內(nèi)容與View邊緣距離是由contentInset來決定的而在iOS11后使用的是adjustedContentInset(內(nèi)容偏移量)末捣。那緊接著我們來說一下這個(gè)屬性是如何進(jìn)行計(jì)算的侠姑,這個(gè)時(shí)候就需要用到contentInsetAdjustmentBehavior這個(gè)枚舉屬性了。
@available(iOS 11.0, *)
public enum UIScrollViewContentInsetAdjustmentBehavior : Int {
case automatic // Similar to .scrollableAxes, but for backward compatibility will also adjust the top & bottom contentInset when the scroll view is owned by a view controller with automaticallyAdjustsScrollViewInsets = YES inside a navigation controller, regardless of whether the scroll view is scrollable
case scrollableAxes // Edges for scrollable axes are adjusted (i.e., contentSize.width/height > frame.size.width/height or alwaysBounceHorizontal/Vertical = YES)
case never // contentInset is not adjusted
case always // contentInset is always adjusted by the scroll view's safeAreaInsets
}
automatic和scrollableAxes屬性依賴于controller 的automaticallyAdjustsScrollViewContentInset屬性為true
(1)automatic
adjustedContentInset = safeAreaInset + contentInset
(2)scrollableAxes
在可以滾動(dòng)的方向上 adjustedContentInset = safeAreaInset + contentInset
在不可以滾動(dòng)的方向上 adjustedContentInset = contentInset
(3)never
adjustedContentInset = contentInset
(4)always
adjustedContentInset = safeAreaInset + contentInset
iPhone X由于是劉海屏幕箩做,安全區(qū)域的問題官方的文檔也說明的很詳細(xì)了莽红,可以戳鏈接:https://developer.apple.com/design/human-interface-guidelines/ios/overview/iphone-x/
文章的最后再拋出一個(gè)問題:現(xiàn)在再來看看我最近遇到的iOS10的一個(gè)問題,隱藏了導(dǎo)航欄,然后進(jìn)入頁面后讓W(xué)KWebView滿鋪整個(gè)屏幕安吁,進(jìn)入之后發(fā)現(xiàn)網(wǎng)頁的內(nèi)容整體下降了一個(gè)信號(hào)欄的高度醉蚁。
因?yàn)閃KWebView是繼承于ScrollView的,前面提到過在iOS11之前都是由UIViewController的automaticallyAdjustsScrollViewInsets(默認(rèn)是true)屬性來控制是否讓他自己去適應(yīng)滾動(dòng)視圖的插入鬼店,而我沒有對(duì)這個(gè)屬性進(jìn)行修改网棍,所以會(huì)自適應(yīng)讓整個(gè)網(wǎng)頁內(nèi)容往下移動(dòng)了一個(gè)信號(hào)欄的高度。