Im having a problem with a NSTimer and i really dont know why this is not working!
i got this
.h
NSTimer eventtimer;
.m
eventtimer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(CheckForAlarm) userInfo:nil repeats:YES];
The problem is that this timer gets executed but never calls that function..
What am i doing wrong??
in .m direct use this without declare in NSTimer