Skip to content

Instantly share code, notes, and snippets.

@kirang89
Last active August 29, 2015 14:01
Show Gist options
  • Save kirang89/0a01dbaf2638c726efdd to your computer and use it in GitHub Desktop.
Save kirang89/0a01dbaf2638c726efdd to your computer and use it in GitHub Desktop.
Polling Example in iOS
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:5.0
target:self
selector:@selector(pollingMethod)
userInfo:nil
repeats:YES];
-(void)pollingMethod {
NSLog(@"Polling method called");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment