I am applying a fading color highlight to cells just added to a UITableView, however it is also being applied when cells that were added earlier get scrolled into view for the first time (e.g. if more than a page's worth of items were added in one go.)
My question is, is it possible to determine whether cellForRowAtIndexPath is being called because the section was recently added, or if it is because it was scrolled into view the first time?
Alternatively, is it possible within cellForRowAtIndexPath to tell if the cell being shown will be visible or not?
Edit: I managed to accomplish this by applying a flag to the datasource once an item had existed for more than a single update (I frequently update my data, so before adding any new items to the list, I simply marked all existing objects in the source as 'old').