我正在编写一个表视图,其中在用户交互时添加了行。一般行为只是添加一行,然后滚动到表的末尾。
这在iOS11之前完全正常,但现在滚动总是从表格顶部跳转而不是平滑滚动。
这里是与添加新行有关的代码:
func updateLastRow() {
DispatchQueue.main.async {
let lastIndexPath = IndexPath(row: self.currentSteps.count - 1, section: 0)
self.tableView.beginUpdates()
self.tableView.insertRows(at: [lastIndexPath], with: .none)
self.adjustInsets()
self.tableView.endUpdates()
self.tableView.scrollToRow(at: lastIndexPath,
at: UITableViewScrollPosition.none,
animated: true)
}
}
和
func adjustInsets() {
let tableHeight = self.tableView.frame.height + 20
let table40pcHeight = tableHeight / 100 * 40
let bottomInset = tableHeight - table40pcHeight - self.loadedCells.last!.frame.height
let topInset = table40pcHeight
self.tableView.contentInset = UIEdgeInsetsMake(topInset, 0, bottomInset, 0)
}
我确信错误在于同时推送多个UI更新(添加行和重新计算边缘插入)这一事实,并尝试使用单独的CATransaction
对象链接这些函数,但是完全扰乱了代码中其他地方定义的异步完成块,这些块更新了一些单元的UI元素。
所以任何帮助都会受到赞赏:)
答案 0 :(得分:2)
我设法通过在调整insets之前调用self.tableView.layoutIfNeeded()
来解决问题:
func updateLastRow() {
DispatchQueue.main.async {
let lastIndexPath = IndexPath(row: self.currentSteps.count - 1, section: 0)
self.tableView.beginUpdates()
self.tableView.insertRows(at: [lastIndexPath], with: .none)
self.tableView.endUpdates()
self.tableView.layoutIfNeeded()
self.adjustInsets()
self.tableView.scrollToRow(at: lastIndexPath,
at: UITableViewScrollPosition.bottom,
animated: true)
}
}
答案 1 :(得分:-3)
确保您尊重安全区域。 有关详细信息,请查看:https://developer.apple.com/ios/update-apps-for-iphone-x/