I have a UITableView
containing a custom UITableViewCell
that contains the time (up to the nearest millisecond). When scrolling, the time text doesn't update until after the scrolling stops. I know this is probably the desired default behaviour for most people, but I want the cell to keep updating even when scrolling. Is there a way to do this? I couldn't find anything in the documentation.
The cell uses an NSTimer
to recursively call the update time function 30 times a second. This function updates a UILabel on the cell.