Jestem programistą na poziomie początkującym. Próbuję dodać akcję do przycisków w Alert, ale to nie działa. Chcę tylko sprawdzić, czy wybór przycisku alertu może zmienić tekst w etykiecie, ale nie działa. Oczywiście dobrze widzę alarm i przyciski, ale po kliknięciu przycisku nic się nie dzieje.Jak dodać akcję do przycisków w Alertu w Swift
@IBOutlet var statusLabelAlert : UILabel
var alertTest = UIAlertView()
@IBAction func alertButton(sender : AnyObject) {
alertTest.message = "Select one!"
alertTest.addButtonWithTitle("1st")
alertTest.addButtonWithTitle("2nd")
alertTest.addButtonWithTitle("3rd")
alertTest.title = "Test Alert"
alertTest.show()
}
func alertView(alertView: UIAlertView!, clickedButtonAtIndex buttonIndex: Int){
switch buttonIndex{
case 0:
statusLabelAlert.text = "1st"
case 1:
statusLabelAlert.text = "2nd"
case 2:
statusLabelAlert.text = "3rd"
default:
statusLabelAlert.text = "error"
}
}