views:

58

answers:

1

I'm trying to create a circular progress indicator like Shazam. It will represent progress during recording. There will be a finite amount of time and I want it to react to the sound level like Shazam's does. Any clues where to begin?

Thanks

+3  A: 

Subclass an UIView (maybe CircularProgress : UIView) and draw it manually with Quartz (paths, circles, etc) on the drawRect method passing the % of the progress as it changes.

Espuz
yeah, I was thinking of that, but I guess I'm trying to figure out how to make the radius grow as the volume increases. thanks.
Ward