tags:

views:

52

answers:

2

I want to build a spinner for menu selection like the one in where to? IPhone app as shown in image below. Any hints?

alt text

+1  A: 

Doesn't need to be very hard. The easiest is probably a UIImageView with the image of the actual spinner, and another UIImageView with the yellow selection highlight (a transparent PNG) overlaying. The rotation can then be controlled with the transform property of the first UIImageView.

This should of course be nicely encapsulated in a custom UIView subclass.

eliego
A: 

Here is a fairly similar question that may be of help:

Best way to implement animation on iPhone SDK?

Andrew Garrison