iPhone Debugging Alert Window


/ Published in: iPhone
Save to your folder(s)



Copy this code and paste it in your HTML
  1. UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Worked!" message:@"Your function was called." delegate:self cancelButtonTitle:@"Close" otherButtonTitles:nil];
  2. [alert show];

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.