Guest User

Untitled

a guest
May 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. - (IBAction)randomButton:(id)sender
  2. {
  3. int v = arc4random() %3;
  4. if (v==1)
  5. {
  6. UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"1" message:@"" delegate:nil cancelButtonTitle:@"Back" otherButtonTitles:nil];
  7. [alertView show];
  8. }
  9. if (v==2)
  10. {
  11. UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"2" message:@"" delegate:nil cancelButtonTitle:@"Back" otherButtonTitles:nil];
  12. [alertView show];
  13. }
  14. if (v==3)
  15. {
  16. UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"3" message:@"" delegate:nil cancelButtonTitle:@"Back" otherButtonTitles:nil];
  17. [alertView show];
  18. }
  19. }
Add Comment
Please, Sign In to add comment