2014年12月6日土曜日

[Swift]アラート表示

let alert = UIAlertView()
alert.title = "Swiftでタイトル"
alert.message = "SwiftでUIAlertViewを使ってメッセージ"
alert.addButtonWithTitle("OK")
alert.show()