I have a set of 100 rows, pretty similar to values which can be selected in a picker. When the user scrolls the table, I want the rows to be appended like an forever-ongoing assembly-belt. So when the user scrolls down and reaches the row 100, and scrolls even further, the table view will show again row 1, and so on. Reverse direction same thing.
My thoughts:
- don't display scroll indicators (they would make not much sense, probably)
- what value to return in the numberOfRows delegate method? This infinity constant?
- in cellForRowAtIndexPath: simply wrap the index around when it exceeds bounds?