Skip to content

Instantly share code, notes, and snippets.

@astannard
Created January 27, 2015 08:57
Show Gist options
  • Save astannard/d6da6874f50e53e2ff1c to your computer and use it in GitHub Desktop.
Save astannard/d6da6874f50e53e2ff1c to your computer and use it in GitHub Desktop.
iOS Alert View
var alertController = UIAlertController(title: "Alert", message: "Your device does not support camera or photo libary", preferredStyle: UIAlertControllerStyle.Alert)
alertController.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil))
self.presentViewController(alertController, animated: true, completion: nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment