I have like 20 items which the user can pick from. Now I want to make a UIScrollView with enabled pagination, that allows to scroll for ever. If the end is reached, the start is appended, and so on.
What would be the simplest way to do something like this? I fear that when I reach an offset of lets say y=10000.0f, it may affect memory. Not sure.
Also a smooth "forever scrolling experience" is important. So just setting the offset to 0/0 when the end is reached will most likely not work... I remember I tried that a year ago, and the UIScrollView animated the whole thing backwards (wrong direction, from end to start) when the offset was set to something else.