An activity indicator view is useful in many applications. Any ideas about how to add, activiate and dismiss an activity indicator view on iPhone?
All the methods for this are welcomed here.
|
4
|
|
|
|
|
|
Create:
Start:
Stop:
When you're finally done, remove the spinner from the view and release. |
||
|
|
|
|
The documentation on this is pretty clear. It's a UIView subclass so you use it like any other view. To start/stop the animation you use
|
||
|
|
|
|
Take a look at the open source WordPress application. They have a very re-usable window they have created for displaying an "activity in progress" type display over top of whatever view your application is currently displaying. http://iphone.trac.wordpress.org/browser/trunk The files you want are:
Then to show it use something like:
And hide with:
|
||
|