views:

861

answers:

1

Does anyone have any idea how I can go about creating an infinite scroll. A good example of this is in the 4 Track iPhone app. There are scrollable "wheels" above the track numbers and below the time indicator. I'm assuming it's using UIScrollView and then drawing the subview as they are scrolled into to view. Any tips?

alt text

A: 

Personally, I wouldn't use a UIScrollView - I would just subclass UIView and deal with dragging myself, positioning the UIView subviews as the touch moved events occur.

deanWombourne