I have a (float) rating value as a percentage from 0..100 (where 50 = Just OK, 0 = terrible and 100=best).
What's a simple way to display this as a 5 star rating on the iphone, with the following requirements:
- simple (ideally just using drawing operations based on a png of a single star or five of them, and without needing to resort to photoshop.)
- reasonably fast (this is part of a cell in a table view)
- includes half stars (or more fine grained)
- displays something reasonable for a rating of 0 (or close to 0)
(This is display only so I don't need it to respond to touch events, though that would be nice - currently I'm just using a slider to capture the rating in the first place)