Skip to content

Instantly share code, notes, and snippets.

@marchampson
Last active August 29, 2015 14:11
Show Gist options
  • Save marchampson/a23b71069425ac8a4ec0 to your computer and use it in GitHub Desktop.
Save marchampson/a23b71069425ac8a4ec0 to your computer and use it in GitHub Desktop.
IOS popup alert
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No network connection"
message:@"You must be connected to the internet to use this app."
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment