I have strange issue with timer. timer is updating well within application. i am showing the code.
// Start Timer
#pragma mark- Timer
- (void)startTimer
{
timer = [NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(updateTimer:) userInfo:nil repeats:YES];
}
// Update Timer
- (void)updateTimer:(NSTimer *)theTimer
{
NSLog(@"called");
}
Problem: I have a textview when i scroll text within the textview the updateTimer method stops calling and when I stop scrolling then it starts to update timer.
Now what to do to continue calling the update timer method?