ikuwow
12/6/2014 - 5:14 AM

Swift (iOS)で日本語変数名が便利だなと思った例 ref: http://qiita.com/ikuwow/items/924a039c168655f4fded

Swift (iOS)で日本語変数名が便利だなと思った例 ref: http://qiita.com/ikuwow/items/924a039c168655f4fded


var alertController = UIAlertController(title: "あなたはシカオさんではありませんね?", message:"", preferredStyle: UIAlertControllerStyle.Alert)

let はいAlertAction = UIAlertAction(title: "はい", style: UIAlertActionStyle.Default, handler: {...(略)...})
let いいえAlertAction = UIAlertAction(title: "いいえ", style: UIAlertActionStyle.Cancel, handler: nil)

alertController.addAction(はいAlertAction)
alertController.addAction(いいえAlertAction)
self.presentViewController(alertController, animated: true, completion:nil)