閉包
func promptForAnswer() {
let ac = UIAlertController(title: "Enter answer", message: nil, preferredStyle: .alert)
ac.addTextField()
let submitAction = UIAlertAction(title: "Submit", style: .default) { [unowned self, ac] (action: UIAlertAction) in
let answer = ac.textFields![0]
self.submit(answer: answer.text!)
}
ac.addAction(submitAction)
present(ac, animated: true)
}
留言
張貼留言