realizar un seguimiento de múltiples estados de uibutton en uitableview swift 3
Estoy creando una aplicación que tiene un botón por fila en una vista utilizable y para ese código es la siguiente.
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 95
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return Int(numberOfButtonsNeeded!)!
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cellIdentifier = "lightCell"
let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as! MyTableViewCell
cell.lightButton.addTarget(self, action: #selector(buttonPressed), for: .touchDown)
cell.lightButton?.tag = tags[indexPath.row]
return cell
}
esencialmente todo lo que quiero es un botón que realice 2 funciones y ahora quiero hacer un seguimiento del botón y si se ha presionado o no.
Si se ha presionado el botón, me gustaría que muestre una determinada imagen llamada "on.jpg" y realice una determinada acción. Si no se ha presionado el botón, me gustaría que muestre "off.jpg" y que realice una acción diferente.
el botón debe estar en cualquiera de los dos estados (presionado o no presionado) y no debe haber estado intermedio.
mi método de botón presionado es el siguiente:
func buttonPressed(_ sender : UIButton){
if ("certain condition is met"){
guard let image = UIImage(named: "on.jpg") else {
print("Image Not Found")
return
}
sender.setImage(image, for: UIControlState.normal)
}
else if ("another condition is met"){
guard let image = UIImage(named: "off.jpg") else {
print("Image Not Found")
return
}
sender.setImage(image, for: UIControlState.normal)
}
}
Intenté usar etiquetas y variables asignadas a cada botón para intentarlo, pero se vuelve demasiado complicado y seguramente debe haber una manera más fácil de realizar un seguimiento.
Por último, ¿cómo haría para actualizar la vista de tabla y asegurarme de que todos los estados estén siempre sincronizados