Skip to content

Instantly share code, notes, and snippets.

@chancyWu
Created January 21, 2014 09:10
Show Gist options
  • Save chancyWu/8536772 to your computer and use it in GitHub Desktop.
Save chancyWu/8536772 to your computer and use it in GitHub Desktop.
- (void)showAlert:(NSString *)message
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Notification" message:message delegate:nil cancelButtonTitle:nil otherButtonTitles: nil];
[alert show];
[self performSelector:@selector(dismissAlert:) withObject:alert afterDelay:0.5];
}
- (void)dismissAlert:(UIAlertView *)alertView
{
[alertView dismissWithClickedButtonIndex:0 animated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment