我在UITableView中有一个粘性标头,该标头在所有设备上都能很好地工作,除了在iPhone X上。在那里,只有当我开始滚动时,顶部边缘(-24)才会在第一次渲染时启动。它会像预期的那样卡入到位。
代码如下:
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let header = tableView.dequeueReusableHeaderFooterView(withIdentifier: headerId) as! ArticleDetailHeader
header.article = article
headerView = header
return header
}
在显示标题后加载
override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
updateHeaderView()
}
这是updateHeaderView函数
func updateHeaderView() {
var height = CGFloat(460)
if ((view.frame.width * 0.56) < 459) {
height = view.frame.width * 0.56
}
let offsetY = tableView.contentOffset.y
let newOffset = -1 * offsetY
let newHeight = (height) + newOffset
self.lastContentDifference = height + newOffset
if (self.lastContentOffset > 64) {
navigationBarTransparency(transparent: true)
} else {
navigationBarTransparency(transparent: false)
}
self.lastContentOffset = self.lastContentDifference
headerView?.headerImage.frame = CGRect(x: 0, y: offsetY, width: tableView.frame.width, height: newHeight)
headerView?.headerImage.layoutIfNeeded()
}
这是scrollViewdidScroll
override func scrollViewDidScroll(_ scrollView: UIScrollView) {
isBouncing = scrollView.isBouncing
if let tableView = scrollView as? UITableView {
updateHeaderView()
for cell in tableView.visibleCells {
guard let cell = cell as? ArticleDetailPost else { continue }
cell.webView.setNeedsLayout()
}
}
}
这是在我的viewDidLoad内部
tableView = UITableView(frame: CGRect.zero, style: .grouped)
tableView.backgroundColor = .white
tableView.register(ArticleDetailHeader.self, forHeaderFooterViewReuseIdentifier: headerId)
tableView.register(ArticleDetailPost.self, forCellReuseIdentifier: cellId)
tableView.separatorColor = .clear
tableView.contentInset = UIEdgeInsetsMake(-64, 0, -40, 0)
tableView.isScrollEnabled = true
tableView.backgroundColor = .green
我感觉自己正在忽略一些非常简单的东西,但是在过去的几个小时中,它一直在困扰着我。