NSTimer执行但不调用该函数

时间:2011-06-24 11:37:12

标签: objective-c ipad nstimer

我遇到了NSTimer的问题,我真的不知道为什么这不起作用!

我得到了这个

.h
NSTimer eventtimer;

.m
eventtimer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(CheckForAlarm) userInfo:nil repeats:YES];

问题是这个计时器被执行但从不调用该函数..

我做错了什么?

1 个答案:

答案 0 :(得分:0)

<。>在.m中直接使用此而不在NSTimer中声明

[NSTimer scheduledTimerWithTimeInterval:62 target:self selector:@selector(CheckForAlarm) userInfo:nil repeats:YES];//where required

-(void)CheckForAlarm
{
  //your logic
}