Objective C Alert Box


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



Copy this code and paste it in your HTML
  1. UIAlertView *alert = [[UIAlertView alloc]
  2. initWithTitle:@"Hello!"
  3. message:@"you clicked this!"
  4. delegate:nil
  5. cancelButtonTitle:@"Okay"
  6. otherButtonTitles:nil];
  7. [alert show];
  8. [alert release];

Report this snippet


Comments


You need to login to view comments.