How do I add a UIActivityIndicatorView spinner circle into a UIBarButton, so that when a user taps on one of those buttons on the navigation bar, they see a spinner while the loading takes place?
|
|
|
If you're trying to show the acitivity wheel in a navigation bar button (e.g. You might have a refresh button on your Navbar) - you can create a new UIBarButtonItem with a custom view being the UIActivityIndicatorView:
This overwrites your rightBarButtonItem with the spinning wheel. When you're done, just recreate the rightBarButtonItem. |
|||
|
|
Place the following where ever is needed:
|
|||
|
|
|
Actually activity indicator is not added as toolbar item. It's a subview of current view.
Remember to release it in |
|||
|
|
pseudocode, i'm not going to check this in Xcode, but something like this should work:
|
|||
|
|
UIActivityIndicatorView is a type of view. Set its frame to be within your button and use -addSubview to add it to the view hierarchy of the UIBarButton. I'm oversimplifying, since you have to try to make it fit the space (possibly by scaling) and center it... |
||||
|
|