Re: NSTimer does NOT repeat, why ?
Re: NSTimer does NOT repeat, why ?
- Subject: Re: NSTimer does NOT repeat, why ?
- From: Thomas Davie <email@hidden>
- Date: Thu, 18 Sep 2008 11:33:07 +0200
On 18 Sep 2008, at 11:18, Florian Soenens wrote:
Hi list,
anyone knows why in this simple piece of code, the method testTimer
is only called once and not every 2 seconds?
Thanks in advance;
Florian.
#import "Controller.h"
@implementation Controller
-(void) awakeFromNib
{
NSLog(@"Creating NSTimer");
timer = [[NSTimer timerWithTimeInterval:2.0 target:self
selector:@selector(testTimer) userInfo:nil repeats:YES] retain];
[timer fire];
}
-(void) testTimer
{
NSLog(@"Test");
}
The timer only fires once, because you are only telling it to fire
once. You should instead be scheduling it.
Bob
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden