Skip to content

Instantly share code, notes, and snippets.

View impeto's full-sized avatar

Alin Mazilu impeto

View GitHub Profile
@rsaunders100
rsaunders100 / alert.m
Created September 19, 2011 09:35
(iOS) UIAlert View Example - Has a delegate for Yes/No Taps Will only display popup once
- (void) showConfirmationAlert
{
// A quick and dirty popup, displayed only once
if (![[NSUserDefaults standardUserDefaults] objectForKey:@"HasSeenPopup"])
{
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Question"
message:@"Do you like cats?"
delegate:self
cancelButtonTitle:@"No"
otherButtonTitles:@"Yes",nil];