Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function findPin() {
  2. for (i=100; i<185; i++){
  3. var result = [RuntimeManipulationDetailsVC validateCode:i];
  4. if (result==true) {
  5. [[[UIAlertView alloc]
  6. initWithTitle:nil
  7. message:[NSString stringWithFormat:@"Correct code is %d",i]
  8. delegate:nil
  9. cancelButtonTitle:@"Cancel"
  10. otherButtonTitles:@"OK", nil] show]; break;}
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement