每次发生一次事件的间隔为10分钟
像这样, 一天图标被替换。
我该如何编写此代码?
-(void)awakeFromNib{
NSTimer *timer;
timer = [NSTimer scheduledTimerWithTimeInterval: 0.5
target: self
selector: @selector(timerAction:)
userInfo: nil
repeats: YES];
}
-(IBAction)timerAction:(id)sender{
NSLog(@"sss");
}