解決push VC , tabbar 跳動問題:安全
導語:本文主要是對iOS 11下APP中tableView
內容下移20pt或下移64pt的問題適配的一個總結。內容包括五個部分:問題的緣由分析、adjustContentInset
屬性的計算方式、什麼狀況下的tableView
會發生內容下移、有哪些解決方法、解決這個問題時遇到的另一個小問題。ide
問題以下圖所示:atom
緣由是iOS 11中Controller的automaticallyAdjustsScrollViewInsets
屬性被廢棄了,因此當tableView超出安全區域時系統自動調整了SafeAreaInsets
值,進而影響adjustedContentInset
值,在iOS 11中決定tableView的內容與邊緣距離的是adjustedContentInset
屬性,而不是contentInset
。adjustedContentInset
的計算方式見本文第二部份內容。由於系統對adjustedContentInset
值進行了調整,因此致使tableView的內容到邊緣的距離發生了變化,致使tableView下移了20pt(statusbar高度)或64pt(navigationbar高度)。code
若是你的APP中使用的是自定義的navigationbar,隱藏掉系統的navigationbar,而且tableView的frame爲(0,0,SCREEN_WIDTH, SCREEN_HEIGHT)開始,那麼系統會自動調整SafeAreaInsets值爲(20,0,0,0),若是使用了系統的navigationbar,那麼SafeAreaInsets
值爲(64,0,0,0),若是也使用了系統的tabbar,那麼SafeAreaInsets
值爲(64,0,49,0)。關於什麼狀況下會發生內容下移的問題,本文第三部分有介紹。blog
系統自動調整tableView內容偏移量,是根據安全區域來調整的。安全區域是iOS 11新提出的,以下圖所示:ip
安全區域幫助咱們將view放置在整個屏幕的可視的部分。即便把navigationbar設置爲透明的,系統也認爲安全區域是從navigationbar的bottom開始的。
安全區域定義了view中可視區域的部分,保證不被系統的狀態欄、或父視圖提供的view如導航欄覆蓋。可使用additionalSafeAreaInsets
去擴展安全區域去包括自定義的content在你的界面。每一個view均可以改變安全區域嵌入的大小,Controller也能夠。it
safeAreaInsets
屬性反映了一個view距離該view的安全區域的邊距。對於一個Controller的根視圖而言,SafeAreaInsets
值包括了被statusbar
和其餘可視的bars覆蓋的區域和其餘經過additionalSafeAreaInsets
自定義的insets值。對於view層次中得其餘view,SafeAreaInsets
值反映了view被覆蓋的部分。若是一個view所有在它父視圖的安全區域內,則SafeAreaInsets
值爲(0,0,0,0)。io
首先看scrollView在iOS11新增的兩個屬性:adjustContentInset
和 contentInsetAdjustmentBehavior
。table
/* Configure the behavior of adjustedContentInset. Default is UIScrollViewContentInsetAdjustmentAutomatic. */ @property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior
adjustContentInset
表示contentView.frame.origin偏移了scrollview.frame.origin多少;是系統計算得來的,計算方式由contentInsetAdjustmentBehavior
決定。有如下幾種計算方式:class
UIScrollViewContentInsetAdjustmentAutomatic
:若是scrollview在一個automaticallyAdjustsScrollViewInsets = YES的controller上,而且這個Controller包含在一個navigation controller中,這種狀況下會設置在top & bottom上 adjustedContentInset = safeAreaInset + contentInset不論是否滾動。其餘狀況下與UIScrollViewContentInsetAdjustmentScrollableAxes
相同
UIScrollViewContentInsetAdjustmentScrollableAxes
: 在可滾動方向上adjustedContentInset = safeAreaInset + contentInset,在不可滾動方向上adjustedContentInset = contentInset;依賴於scrollEnabled和alwaysBounceHorizontal / vertical = YES,scrollEnabled默認爲yes,因此大多數狀況下,計算方式仍是adjustedContentInset = safeAreaInset + contentInset
UIScrollViewContentInsetAdjustmentNever
: adjustedContentInset = contentInset
UIScrollViewContentInsetAdjustmentAlways
: adjustedContentInset = safeAreaInset + contentInset
當contentInsetAdjustmentBehavior
設置爲UIScrollViewContentInsetAdjustmentNever的時候,adjustContentInset值不受SafeAreaInset
值的影響。
若是設置了automaticallyAdjustsScrollViewInsets = YES,那麼不會發生問題,一直都是由系統來調整內容的偏移量。
接下來排查下本身的項目中哪些頁面會發生以上問題。
當tableView的frame超出安全區域範圍時,系統會自動調整內容的位置,SafeAreaInsets
值會不爲0,因而影響tableView的adjustContentInset
值,因而影響tableView的內容展現,致使tableView的content下移了SafeAreaInsets
的距離。SafeAreaInsets
值爲0時,是正常的狀況。
須要瞭解每一個頁面的結構,看tableView是否被系統的statusbar或navigationbar覆蓋,若是被覆蓋的話,則會發生下移。也能夠經過tableview.safeAreaInsets
的值來確認是由於安全區域的問題致使的內容下移。
以下代碼片斷,能夠看出系統對tableView向下調整了20pt的距離,由於tableView超出了安全區域範圍,被statusbar覆蓋。
tableview.contentInset: {64, 0, 60, 0} tableview.safeAreaInsets: {20, 0, 0, 0} tableview.adjustedContentInset: {84, 0, 60, 0}
若是以前本身設置了contentInset
值爲(64,0,0,0),如今系統又設置了SafeAreaInsets
值爲(64,0,0,0),那麼tableView內容下移了64pt,這種狀況下,能夠設置contentInset
值爲(0,0,0,0),也就是聽從系統的設置了。
若是不須要系統爲你設置邊緣距離,能夠作如下設置:
//若是iOS的系統是11.0,會有這樣一個宏定義「#define __IPHONE_11_0 110000」;若是系統版本低於11.0則沒有這個宏定義 #ifdef __IPHONE_11_0 if ([tableView respondsToSelector:@selector(setContentInsetAdjustmentBehavior:)]) { tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; } #endif
contentInsetAdjustmentBehavior
屬性也是用來取代automaticallyAdjustsScrollViewInsets
屬性的,推薦使用這種方式。
iOS 11以前,你們是經過將Controller的automaticallyAdjustsScrollViewInsets
屬性設置爲NO,來禁止系統對tableView調整contentInsets
的。若是仍是想從Controller級別解決問題,那麼能夠經過設置Controller的additionalSafeAreaInsets
屬性,若是SafeAreaInset
值爲(20,0,0,0),那麼設置additionalSafeAreaInsets
屬性值爲(-20,0,0,0),則SafeAreaInsets
不會對adjustedContentInset
值產生影響,tableView內容不會顯示異常。這裏須要注意的是addtionalSafeAreaInset
是Controller的屬性,要知道SafeAreaInset
的值是由哪一個Controller引發的,多是由本身的Controller調整的,多是navigationController調整的。是由哪一個Controller調整的,則設置哪一個Controller的addtionalSafeAreaInset
值來抵消掉SafeAreaInset
值。
個人做品頁面的tableView下移了約40pt,這裏是否跟安全區域有關呢?
查了下頁面結構,tableView的父視圖的frame在navigationbar的bottom之下,tableView在父視圖的安全區域內,打印出來tableView的SafeAreaInset值也是(0,0,0,0);因此不是安全區域致使的內容下移。
通過查看代碼,發現tableView的style:UITableViewStyleGrouped
類型,默認tableView開頭和結尾是有間距的,不須要這個間距的話,能夠經過實現heightForHeaderInSection方法(返回一個較小值:0.1)和viewForHeaderInSection(返回一個view)來去除頭部的留白,底部同理。
iOS 11上發生tableView頂部有留白,緣由是代碼中只實現了heightForHeaderInSection方法,而沒有實現viewForHeaderInSection方法。那樣寫是不規範的,只實現高度,而沒有實現view,但代碼這樣寫在iOS 11以前是沒有問題的,iOS 11以後應該是因爲開啓了估算行高機制引發了bug。添加上viewForHeaderInSection方法後,問題就解決了。或者添加如下代碼關閉估算行高,問題也獲得解決。
self.tableView.estimatedRowHeight = 0; self.tableView.estimatedSectionHeaderHeight = 0; self.tableView.estimatedSectionFooterHeight = 0;