Guest User

Untitled

a guest
Jun 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ## header file
  2. NSUInteger numTimes;
  3.  
  4. ## implementation file
  5. - (void)viewDidLoad {
  6. [super viewDidLoad];
  7. ...
  8. [NSTimer scheduledTimerWithTimeInterval:4 target:self selector:@selector(myMethod) userInfo:nil repeats:YES];
  9. }
  10.  
  11. - (void)myMethod {
  12. numTimes++;
  13. //NSLog("CallsToGPS: %d", numTimes);
  14. }
Add Comment
Please, Sign In to add comment