Advertisement
Guest User

clickedOnButton

a guest
Nov 27th, 2016
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. //clickedButtonAtIndex...
  2. -(void)clickedOnButton:(int)alertTag {
  3. [BT_debugger showIt:self theMessage:[NSString stringWithFormat:@"alertView clickedButtonAtIndex: %d", alertTag]];
  4.  
  5. // 0 = no, 1 = yes
  6. if(alertTag == 0){
  7. //do nothing...
  8. }
  9.  
  10. if(alertTag == 12){
  11. [self refreshAppData];
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement