我有一个典型的UITableView。它是一个部分,从一组对象中提取数据。
将选择的唯一单元格是表格视图中的最后一个单元格。我没有选择多个细胞。当data
设置为[0, 0, 0, 1]
时,将选择最后一个单元格,但任何其他组合(例如[0, 0, 1, 0])
)都不会选择单元格。
我正在使用XCode 9,Swift 3.2,iOS 11
这是视图控制器,它呈现在另一个视图控制器之上:
class ProblemedTableViewController: UITableViewController {
let data = [0, 0, 1, 0]
init() {
super.init(nibName: nil, bundle: nil)
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "Cell")
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return data.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
cell.textLabel?.text = String(data[indexPath.row])
return cell
}
override func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
if data[indexPath.row] == 1 {
cell.setSelected(true, animated: false)
tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
}
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
dismiss(animated: true, completion: nil)
}
}