int main (int argc, const char * argv[]) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
double next_blog_post = [[NSDate distantFuture] timeIntervalSinceNow];
[NSTimer scheduledTimerWithTimeInterval:next_blog_post
target:[HumanObject humanWithName:@"Jean-Francois Roy"]
selector:@selector(updateBlog:)
userInfo:nil
repeats:NO];
[[NSRunLoop currentRunLoop] run];
[pool release];
return 0;
}
Posted by Jean-François Roy at 11:54 PST
Sorry, the comment form is closed at this time.