Skip to content

Instantly share code, notes, and snippets.

@RameshRM
Created October 16, 2014 04:14
Show Gist options
  • Save RameshRM/310d97c6813908ff9b0e to your computer and use it in GitHub Desktop.
Save RameshRM/310d97c6813908ff9b0e to your computer and use it in GitHub Desktop.
Hello World Alert w/UIAlertView
var myAlertView = UIAlertView()
myAlertView.title = "Test"
myAlertView.message = "Hello, world!"
myAlertView.addButtonWithTitle("Dismiss")
myAlertView.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment