Hi,
I have an NSTimer running in a shared class. + (GlobalClass *)sharedInstance;
Basically it runs once, and the second time it runs, it just killed the whole app.
This is how I'm doing the NSTimer
myTimer = [NSTimer scheduledTimerWithTimeInterval:5.0
target:self
selector:@selector(moveMe)
userInfo:nil
repeats:YES];
method moveMe is just an empty method for now. So it shouldn't be something that's happening within moveMe.
Has anyone experienced this? Please enlight.
Thanks,
Tee