在cellForRowAt下的cb.check(self.rowChecked [indexPath.row])行中,我得到一个“类型值'LolFirstTableViewController'没有成员'rowChecked'”,即使我将rowChecked设置为数组具有tasks.count项目数的布尔值。我是否需要在除了cellForRowAt之外的其他地方初始化rowChecked或者我在这里做错了什么?此代码的要点是在表格的每个单元格中显示一个复选框,您可以在其中单击它以将附件更改为复选标记,然后再次单击它以取消选中它。复选框本身是一个名为CheckButton的独立自定义类。我还在学习Swift,所以任何帮助都会非常感激!谢谢!
import UIKit
class LoLFirstTableViewController: UITableViewController {
var tasks:[Task] = taskData
override func viewDidLoad() {
super.viewDidLoad()
tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 60.0
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
override func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return tasks.count
}
@IBAction func cancelToLoLFirstTableViewController(_ segue:UIStoryboardSegue) {
}
@IBAction func saveAddTask(_ segue:UIStoryboardSegue) {
if let AddTaskTableViewController = segue.source as? AddTaskTableViewController {
if let task = AddTaskTableViewController.task {
tasks.append(task)
let indexPath = IndexPath(row: tasks.count-1, section: 0)
tableView.insertRows(at: [indexPath], with: .automatic)
}
}
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "TaskCell", for: indexPath) as! TaskCell
let task = tasks[indexPath.row]
cell.task = task
var rowChecked: [Bool] = Array(repeating: false, count: tasks.count)
if cell.accessoryView == nil {
let cb = CheckButton()
cb.addTarget(self, action: #selector(buttonTapped(_:forEvent:)), for: .touchUpInside)
cell.accessoryView = cb
}
let cb = cell.accessoryView as! CheckButton
cb.check(self.rowChecked[indexPath.row])
return cell
}
func buttonTapped(_ target:UIButton, forEvent event: UIEvent) {
guard let touch = event.allTouches?.first else { return }
let point = touch.location(in: self.tableView)
let indexPath = self.tableView.indexPathForRow(at: point)
var tappedItem = tasks[indexPath!.row] as Task
tappedItem.completed = !tappedItem.completed
tasks[indexPath!.row] = tappedItem
tableView.reloadRows(at: [indexPath!], with: UITableViewRowAnimation.none)
}
答案 0 :(得分:1)
您将rowChecked
声明为局部变量并使用self.rowChecked
调用它,就像它是类属性一样。
要解决此问题,请在self.
之前删除rowChecked
。
<强>旧强>
cb.check(self.rowChecked[indexPath.row])
新强>
cb.check(rowChecked[indexPath.row])
可能还有其他问题,但这就是您的代码目前存在错误的原因。
答案 1 :(得分:1)
var rowChecked: [Bool] = Array(repeating: false, count: tasks.count)
方法中有一行:tableView:cellForRowAt
,因此它是一个局部变量,它不是LolFirstTableViewController
类的属性。
这意味着您需要更改此行:cb.check(self.rowChecked[indexPath.row])
至cb.check(rowChecked[indexPath.row])
(已移除self.
)。