Skip to content

Instantly share code, notes, and snippets.

@psobko
Created October 21, 2013 18:43
Show Gist options
  • Save psobko/7088787 to your computer and use it in GitHub Desktop.
Save psobko/7088787 to your computer and use it in GitHub Desktop.
NSTimer
//Setup
NSTimer *aTimer = [NSTimer scheduledTimerWithTimeInterval:0.1f
target:self
selector:@selector(someSelector)
userInfo:nil
repeats:YES];
//Tear down
[aTimer invalidate];
aTimer = nil;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment