I added autostart in my iOS application (add VoIP in Required background modes) and it worked fine. Then I wanted to add NSTimer. I wrote the following in - (id) init
NSLog(@"!!!!IT'S START!!!!");
MyTimer = [NSTimer scheduledTimerWithTimeInterval:60 target:self
selector:@selector(StartMyTimer) userInfo:nil repeats:YES];
- (BOOL) StartMyTimer
{
NSLog(@"Timer is wirk");
}
When my app is autostarted I get a message "!!!!IT'S START!!!!" and no one...
If some one knows what the problem is then please help!
Maybe you must add parameter to receive the timer and add : at the end of StartMyTimer.