添加标题视图后,滚动到 UITableView 底部导致 NSException
Posted
技术标签:
【中文标题】添加标题视图后,滚动到 UITableView 底部导致 NSException【英文标题】:After adding header view, scroll to bottom of UITableView cause NSException 【发布时间】:2017-02-08 22:16:59 【问题描述】:我有一个方法可以将我的UITableView
滚动到底部:
func tableViewScrollToBottom(_ animated: Bool)
let delay = 0.1 * Double(NSEC_PER_SEC)
let time = DispatchTime.now() + Double(Int64(delay)) / Double(NSEC_PER_SEC)
DispatchQueue.main.asyncAfter(deadline: time, execute:
print(self.tview.numberOfRows(inSection: 0))
print(self.tview.numberOfSections)
let indexPath = IndexPath(row: self.tview.numberOfRows(inSection: 0), section: self.tview.numberOfSections)
print(indexPath)
print("it will crash now")
self.tview.scrollToRow(at: indexPath, at: .bottom, animated: animated)
)
它之前运行良好,但是当我添加标题视图时 - 它崩溃了。
我在控制台中看到:
8
1
[1, 8]
it will crash now
所以我不明白为什么这行:
self.tview.scrollToRow(at: indexPath, at: .bottom, animated: animated)
导致崩溃。我在这里错过了什么?
【问题讨论】:
如果您的部分中有 8 行,则最后一行为第 7 行。同样,如果有 1 个部分,则最后一个部分为第 0 部分。您需要从行和部分中减去 1您尝试滚动到的索引路径。 @dan 你当然是对的。麻烦将其添加为答案? 【参考方案1】:你有这个问题
let indexPath = IndexPath(row: self.tview.numberOfRows(inSection: 0), section: self.tview.numberOfSections)
尝试做-1
let indexPath = IndexPath(row: self.tview.numberOfRows(inSection: 0)-1, section: self.tview.numberOfSections-1)
【讨论】:
以上是关于添加标题视图后,滚动到 UITableView 底部导致 NSException的主要内容,如果未能解决你的问题,请参考以下文章
如何在 UITableView 顶部添加一个一起滚动的视图,但在滚动后粘在顶部
UIScrollView 滚动后 UITableView contentOffset 重置