Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. NSTimer *mainTimer = [NSTimer scheduledTimerWithTimeInterval:1
  2. target:thisTimer
  3. selector:@selector(increaseSeconds)
  4. userInfo:nil
  5. repeats:YES];
  6.  
  7. - (void)increaseSeconds {
  8. parent.label.text = whatever....;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement