Slide 14
Slide 14 text
func showQuestionAlert() {
let controller = UIAlertController(title: "Question",
message: "Pigeons are the new cats?",
preferredStyle: .Alert)
let no = UIAlertAction(title: "No", style: .Default) { _ in
...
}
controller.addAction(no)
let yes = UIAlertAction(title: "Coo!", style: .Default) { _ in
...
}
controller.addAction(yes)
self.presentViewController(controller, animated: true) { ... }
}