可可:每次间隔10分钟即可执行一次事件

时间:2012-04-19 06:12:05

标签: objective-c xcode macos cocoa

每次发生一次事件的间隔为10分钟

像这样, 一天图标被替换。

enter image description here

我该如何编写此代码?

-(void)awakeFromNib{    
    NSTimer *timer;
    timer = [NSTimer scheduledTimerWithTimeInterval: 0.5
                                             target: self
                                           selector: @selector(timerAction:)
                                           userInfo: nil
                                            repeats: YES];
}

-(IBAction)timerAction:(id)sender{
    NSLog(@"sss");
}

0 个答案:

没有答案