You could call [self myThread:nil] after you start your timer.

Joe K.


On Dec 4, 2008, at 3:17 AM, Mahaboob wrote:

Hi,
I need to fire the thread repeatedly in regular time intervals. So I used
the timer like:
timer = [[NSTimer scheduledTimerWithTimeInterval:(double) [txtTimeinterval
doubleValue] target:self selector:@selector(myThread:) userInfo:nil
repeats:YES]retain];

It is working but, the thread is fired only after the the time interval I had given. But actually I need to begin the thread in 0Sec and then keep the
regular time interval. For that I used the code :
NSDate* theDate = [NSDate dateWithTimeIntervalSinceReferenceDate:0];
    [[timer initWithFireDate:theDate interval:(double)[txtTimeinterval
doubleValue] target:self selector:@selector(myThread:) userInfo:nil
repeats:YES]retain];

But it is not firing the thread.
Where I got wrong?
How can I do this?

Thanks in advance
mahaboob


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/joeman%40mac.com

This email sent to [EMAIL PROTECTED]

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to