In my iOS app I am using UITableView
with max. 8 rows (number of rows can change but maximum is 8). I am downloading some data which are processed and presented in the table view.
If some data are not correct (out of range or anything) I need to inform the user about that. This warning should be row flashing. If some value on position 2 is not correct, row 2 should be flashing (white/red).
I need advice what is the best way how to implement that.
Only idea I have is to implement backgroud timer which runs in 500ms interval and everytime checks the array with data and if some data are not correct, it changes background color of the particular row (if the backgroud color is white, it is changed to red and oposite). This should look like flashing.
Is that OK or do you have better idea? Thanks