问题描述
每次我点击添加按钮单元格。当用户点击添加按钮时,应该立即将一个新单元格添加到 tableview,整个代码进入运行时错误。我想修复该错误,以便您可以向 tableview 添加单元格。运行时错误状态
"无效更新:第 0 节中的行数无效。 更新 (5) 后现有部分中包含的行必须是 等于包含在该部分之前的行数 update(5),加减插入或删除的行数 该部分(插入 1 个,删除 0 个)加上或减去移入或移出该部分的行数(0 个移入,0 个移出)。”
import UIKit
class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {
var addBTN = UIButton()
var arr = [1,1,3,3]
var currentIndex = 0
var arrayValues = [Int]()
var pic = UIImageView()
var addBtn = UIButton()
var cellCount = 5
var tableview = UITableView()
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
return cellCount // use a variable here so you can change it as you delete cells,else it will crash
}
func tableView(_ tableView: UITableView,heightForRowAt indexPath: IndexPath) -> CGFloat {
return 118
}
func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell",for: indexPath) as! CustomTv
return cell
}
override func viewDidLoad() {
super.viewDidLoad()
[addBTN].forEach{
$0.translatesAutoresizingMaskIntoConstraints = false
view.addSubview($0)
}
tableview.frame = CGRect(x: 0,y: 0,width: view.frame.width,height: view.frame.height * 0.8)
addBTN.frame = CGRect(x: view.frame.width / 2,y: view.frame.height * 0.8,width: view.frame.width / 2,height: view.frame.height / 5)
addBTN.backgroundColor = .systemteal
view.addSubview(tableview)
tableview.register(CustomTv.self,forCellReuseIdentifier: "cell")
tableview.delegate = self
tableview.dataSource = self
pic.isHidden = true
pic.frame = CGRect(x: 0,height: view.frame.height )
addBTN.addTarget(self,action: #selector(newCell),for: .touchDown)
addBTN.setTitle("New cell",for: .normal)
}
@objc func newCell(){
arr.append(6) /// not sure what the numbers mean though...
tableview.beginUpdates()
tableview.insertRows(at: [IndexPath(row: arr.count - 1,section: 0)],with: .automatic) /// animate the insertion
tableview.endUpdates()
}
}
protocol CustomTvCellDelegateadd: AnyObject {
func addCeller(_ customTV: CustomTv)
}
class CustomTv: UITableViewCell { // it's good form to Pascal case your class name ;)
weak var delegate: CustomTvCellDelegate? // make that delegate a property of your cell
weak var delegatef: CustomTvCellDelegateadd?
lazy var backView : UIView = {
let view = UIView(frame: CGRect(x: 10,y: 6,width: self.frame.width,height: 110))
view.backgroundColor = .green
return view
}()
lazy var pic : UIImageView = {
let btn = UIImageView(frame: CGRect(x: 50-25,width: 100,height: 110))
btn.backgroundColor = .systemPink
return btn
}()
override func layoutSubviews() {
backView.clipsToBounds = true
backView.frame = CGRect(x: 0,width: bounds.maxX,height: 110)
// moved these calls here instead of on setSelected(_selected:animated:)
addSubview(backView)
backView.addSubview(pic)
}
@objc func addButtonTapped() {
self.delegatef?.addCeller(self)
}
}
解决方法
那是因为您将值 (6) 附加到名为 arr 的数组,但是当 tableView 要求部分中的行数时,您返回了 cellCount
,您从不费心增加它,因此它将继续返回 5。
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
return cellCount // use a variable here so you can change it as you delete cells,else it will crash
}
因此,当执行 tableview.insertRows
时,tableView 期望行数按数组中的元素数递增(在您的情况下,它期望行数为 6,但由于 cellCount
的值不变它只会得到 5,因此 tableView 不知道并抛出错误提及
更新后包含在现有节中的行数 (5) 必须等于该节中包含的行数 在更新(5)之前,加上或减去插入的行数或 从该部分删除(插入 1 个,删除 0 个)和加号或减号 移入或移出该部分的行数(0 移入,0 搬出去了)。”
所以要么改变
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
return arr.count
}
或使用
@objc func newCell(){
cellCount += 1 // update the value
arr.append(6)
tableview.beginUpdates()
tableview.insertRows(at: [IndexPath(row: arr.count - 1,section: 0)],with: .automatic) /// animate the insertion
tableview.endUpdates()
}
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
return cellCount
}
哪个对你更有意义:)