「Ios/swift/AlertView」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→確認メッセージ) |
(→通知メッセージ) |
||
行1: | 行1: | ||
==通知メッセージ== | ==通知メッセージ== | ||
+ | okのみ | ||
let alert:UIAlertController = UIAlertController(title: "タイトル", message: "メッセージ", preferredStyle: UIAlertControllerStyle.Alert) | let alert:UIAlertController = UIAlertController(title: "タイトル", message: "メッセージ", preferredStyle: UIAlertControllerStyle.Alert) | ||
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { | alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { |
2016年7月30日 (土) 00:06時点における版
通知メッセージ
okのみ
let alert:UIAlertController = UIAlertController(title: "タイトル", message: "メッセージ", preferredStyle: UIAlertControllerStyle.Alert) alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { (action) -> Void in print("ok") })) self.presentViewController(alert, animated: true, completion: {})
確認メッセージ
okとキャンセル
let ac = UIAlertController(title: "Title", message: "Message", preferredStyle: .Alert) let cancelAction = UIAlertAction(title: "Cancel", style: .Cancel) { (action) -> Void in print("Cancel button tapped.") } let okAction = UIAlertAction(title: "OK", style: .Default) { (action) -> Void in print("OK button tapped.") } ac.addAction(cancelAction) ac.addAction(okAction) presentViewController(ac, animated: true, completion: nil)