我遇到了NSTimer的问题,我真的不知道为什么这不起作用!
我得到了这个
.h
NSTimer eventtimer;
.m
eventtimer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(CheckForAlarm) userInfo:nil repeats:YES];
问题是这个计时器被执行但从不调用该函数..
我做错了什么?
答案 0 :(得分:0)
[NSTimer scheduledTimerWithTimeInterval:62 target:self selector:@selector(CheckForAlarm) userInfo:nil repeats:YES];//where required
-(void)CheckForAlarm
{
//your logic
}