如何解决在tableView的末尾添加一个按钮
我正在尝试在表视图底部添加一个按钮来处理 loadMore()
函数。
我试图做的是以编程方式在自定义单元格中定义一个按钮,并在 numberOfRows 优于 tableView 项目数时尝试附加它。这会导致致命错误“索引超出范围”。
这是我想要实现的目标:
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
return itemArray.count + 1
}
func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let loadCell = itemList.dequeueReusableCell(withIdentifier: "loadMore",for: indexPath) as! LoadMore
let cell = itemList.dequeueReusableCell(withIdentifier: "normalCell",for: indexPath) as! ItemBox
if indexPath.row > itemArray.count {
return loadCell
}
return cell
}
我不明白为什么会出现此错误,因为我在 numberOfRowsInSection 函数中又指定了一行。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。