Skip navigation.
 
mlRe: Newbie question: Timers
FROM : Daniel Richman
DATE : Mon Jun 30 23:46:26 2008

Use this:

NSTimer *myTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 // number
of seconds as double
target:self // targer
selector:@selector(checkTimer:) // selector to call (parameter is the timer)
userInfo:nil // I don't use any user info
repeats:YES]; // whether the timer repeats or is once only (this is a BOOL)


Daniel


Matthew Youney wrote:
> Hello everyone:
> I have another question that is based on my Microsoft background (yes I am
> ashamed).
>
> In the VS environment, there is a “timer” control that can be dropped onto a
> form, and will generate timer events every X milliseconds.  How would I
> impliment similar functionality in Cocoa, or what would you gurus suggest
> that I look into?  What is best?
>
>
> As always, thanks for your help, and best regards,
> Matt
> _______________________________________________
>
> Cocoa-dev mailing list (<email_removed>)
>
> 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/<email_removed>
>
> This email sent to <email_removed>
>

Related mailsAuthorDate
mlNewbie question: Timers Matthew Youney Jun 30, 23:36
mlRe: Newbie question: Timers Daniel Richman Jun 30, 23:46
mlRe: Newbie question: Timers j o a r Jun 30, 23:47
mlRE: Newbie question: Timers Matthew Youney Jul 1, 19:27