vote up 6 vote down star
8

I have noticed that some apps like Safari and Mail show a loading indicator in the status bar (the bar at the very top of the phone) when they are accessing the network. Is there a way to do the same thing in SDK apps, or is this an Apple only thing?

flag

2 Answers

vote up 7 vote down check

It's in UIApplication:

UIApplication* app = [UIApplication sharedApplication];
app.networkActivityIndicatorVisible = YES;
link|flag
Thanks that works perfectly. Just a side note: the simulator seems to ignore this value, which made me think at first it didn't work. – rustyshelf Oct 3 '08 at 13:33
vote up 0 vote down

I've found the following macros pretty useful!

#define ShowNetworkActivityIndicator() [UIApplication sharedApplication].networkActivityIndicatorVisible = YES
#define HideNetworkActivityIndicator() [UIApplication sharedApplication].networkActivityIndicatorVisible = NO

So you can just call ShowNetworkActivityIndicator(); or HideNetworkActivityIndicator(); from within your app (as long as the header is included of course!).

link|flag
1  
Why not define a category on UIApplication? Seems much nicer (and more debuggable) than a #define. – Barry Wark Nov 17 at 18:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.