如何從UIAlertAction內引用self
?Swift:單擊更改UIAlertAction標題
refreshAlert.addAction(UIAlertAction(title: "Ok", style: .Default, handler: { (action: UIAlertAction!) in
// self.title = String("HELLO")
print("Handle Ok logic here")
}))
我想讓UIAlertAction的標題在點擊時(以及其他事物)發生變化。如何在命令中引用我自己在點擊時做什麼?
我如何讓它在那裏點擊一個UIAlertAction如果您想從自己的處理程序訪問UIAlertAction
對象不關閉警報操作
當點擊按鈕時,您無法防止'UIAlertController'解除關閉。 – rmaddy