I have a label inside a scroll view iOS.
And a timer to update the label text.
It work OK but if I'm scrolling the scroll view, the label does not update
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(countDown) userInfo:nil repeats:YES];
- (void) countDown {
label.text = [[NSDate date] description];
}
Answer here: My custom UI elements are not being updated while UIScrollView is scrolled