/ Published in: Objective C
How to show and hide the activity indicator in the statusbar (hey no... it's not managed by the system !).
It's supposed to be used when the app is performing network connection.
Expand |
Embed | Plain Text
// Show it [UIApplication sharedApplication].networkActivityIndicatorVisible = YES; // Hide it [UIApplication sharedApplication].networkActivityIndicatorVisible = NO; // That's it ! ;)
You need to login to post a comment.
