UIAlert - popping up an alert


/ Published in: Objective C
Save to your folder(s)



Copy this code and paste it in your HTML
  1. UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message" delegate:nil cancelButtonTitle:@"Close" otherButtonTitles:nil];
  2. [alert show];
  3. [alert release];

Report this snippet


Comments


You need to login to view comments.