NSTimer *aTimer;
- (void)setTimerEvent
{
aTimer = [NSTimer scheduledTimerWithTimeInterval:3.0f target:self selector:@selector(onTimerEvent:) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:aTimer forMode:NSDefaultRunLoopMode];
}
- (void)onTimerEvent:(NSTimer*)inTimer
{
// Something to do
}
- (void)stopTimer
{
[aTimer invalidate];
aTimer = nil;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.