In the awesome app Draw Something, when you click on something and the page is loading, a custom uiactivity indicator view is pulled up where a pencil moves in a (non circular) path in a loop. How would I start to set this up in my own iPhone App?
1 Answer
You can either create your own animating "UIImageView" object (which you could call instead of UIActivityIndicatorView) or you could subclass "UIActivityIndicatorView" and do your own drawing (yech; I'd say the first method would be the way I would prefer to do it).