我的代码将城市数组读取为git reset --hard <hash of last good commit>
。
单击一个单元格,它将移至tableView
。 SecondViewController
有一个按钮。
如果单击按钮,它将在该单元格中显示图像。
问题::每当单击按钮时,我都会尝试更新单元格。它正在运行,但是无论单击哪个单元格,它始终显示单元格3的图像,如果再次单击,它将显示单元格编号1的图像。
如何解决此问题,以便在单击按钮时显示其单元格的图像,如果单击同一单元格,则隐藏图像。
我的代码:
SecondViewController
}
SecondViewController:
var first = 0
var reload = false
var cellNumber: Int!
var cities:[String] = ["paris", "moscow", "milan","rome","madrid","garda","barcelona"]
@IBOutlet weak var tableView: UITableView!
// func to reload a cell
@objc func toReload(rowNumber: Int){
reload = true
let indexPath = IndexPath(row: rowNumber , section: 0)
tableView.reloadRows(at: [indexPath], with: .none)
}
// load tableview from a SecondViewController call
@objc func loadList(notification: NSNotification){
self.tableView.reloadData() // reload tableview
toReload(rowNumber: cellNumber)
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return cities.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as! CustomCell
cell.label1.text = cities[indexPath.row]
let image : UIImage = UIImage(named: "20870718")! // assign imageView to an image
if first == 0 {
cell.myimage.isHidden = true // hide image
first = 1 // condition to never enter again
}
if reload == true {
if cell.myimage.isHidden == true {
cell.myimage.image = image
cell.myimage.isHidden = false
}
else{
cell.myimage.isHidden = true
}
reload = false
}
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.cellNumber = indexPath.row
performSegue(withIdentifier: "send", sender: self)
}
override func viewDidLoad() {
super.viewDidLoad()
tableView.reloadData()
NotificationCenter.default.addObserver(self, selector: #selector(loadList), name: NSNotification.Name(rawValue: "load"), object: nil)
// call load list method
}
答案 0 :(得分:1)
您的cellForRowAt
中存在一个问题。无论您要重新加载哪个单元格,无论何时secondViewController通知第一个时,总是会调用cellForRowAt
,因为滚动tableView时要重新使用单元格和{{1 }}对所有单元格都成立,因此您必须检查reload == true
是否完成其余工作:
indexPath.row == cellNumber