Created
July 18, 2014 07:32
-
-
Save seyhunak/4f4ec059c61f7b4e5332 to your computer and use it in GitHub Desktop.
UIAlertController and UIAlertAction in Swift (iOS8)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
} | |
})) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how i can run that in View did load ???