Skip to content

Instantly share code, notes, and snippets.

@seyhunak
Created July 18, 2014 07:32
Show Gist options
  • Save seyhunak/4f4ec059c61f7b4e5332 to your computer and use it in GitHub Desktop.
Save seyhunak/4f4ec059c61f7b4e5332 to your computer and use it in GitHub Desktop.
UIAlertController and UIAlertAction in Swift (iOS8)
// Declaring UIAlertController
var alert = UIAlertController(title: "Welcome!", message: "You logged in!", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Continue", style: UIAlertActionStyle.Default, handler: nil))
self.presentViewController(alert, animated: true, completion: nil)
// Handling UIAlertController Actions
alert.addAction(UIAlertAction(title: "Ok", style: .Default, handler: { action in
switch action.style{
case .Default:
println("default")
break
case .Cancel:
println("cancel")
break
case .Destructive:
println("destructive")
break
}
}))
@aboud-masoud
Copy link

how i can run that in View did load ???

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment