One Quickie


Basics (NSTimer->General)
- (void) handleTimer: (NSTimer *) timer
{
    do some work here...
} // handleTimer

NSTimer *timer;

timer = [NSTimer scheduledTimerWithTimeInterval: 0.5
                 target: self
                 selector: @selector(handleTimer:)
                 userInfo: nil
                 repeats: YES];



borkware home | products | miniblog | rants | quickies | cocoaheads
Advanced Mac OS X Programming book

webmonster@borkware.com