Skip to content

Instantly share code, notes, and snippets.

@neerajgoel82
Last active February 6, 2017 14:03
Show Gist options
  • Save neerajgoel82/4f4ff2adf7fd51375073 to your computer and use it in GitHub Desktop.
Save neerajgoel82/4f4ff2adf7fd51375073 to your computer and use it in GitHub Desktop.
iOS alert usage
UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"Alert !!!" message:@"This message should pop us as soon as the app loads" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
[alert show];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment