Skip to content
Liu Lantao edited this page Jun 7, 2014 · 5 revisions

UI

UIAlertView

let alert: UIAlertView = UIAlertView()
alert.title = "This a simple UIAlertView"
alert.message = "Press OK to continue"
alert.addButtonWithTitle("OK")
alert.show()
Clone this wiki locally