just to test it I enabled the activity indicator of the status bar as follows:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible: TRUE]; 

    //...
}

I never disable the indicator so it should always be visible, but it isn't. It is visible in the iPhone Simulator but not on the device. Why?

link|improve this question
Do you disable the indicator anywhere else in your code at all (not necessarily in the app delegate) ? – Mutix Feb 3 at 13:23
No, nowhere else. – user1182314 Feb 3 at 15:48
And does it happen on iOS 5 device only ? Can you reproduce this on 4.3 device ? – Mutix Feb 3 at 16:34
Currently I cannot check other iOS versions. – user1182314 Feb 6 at 6:41
@user1182314 Have you tried my answer? – Johan Karlsson Feb 7 at 7:16
feedback

1 Answer

Please not that the application is not active when a call is made to didFinishLaunchingWithOptions. You should move this to the viewDidLoad method instead. Thus the code should look like this:

- (void)viewDidLoad {
    [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
    // Some other code goes here...
    [super viewDidLoad];
}

Or you could put this code anywhere else where the view has been loaded. Do not forget to stop it once the data has been loaded.

link|improve this answer
That's really strange. I switched off my test phone for a day because I had to work on another project. Today I tried your proposal and it works. But it also works if I make this call in didFinishLaunchingWithOptions. I also noticed that the WLAN icon is now present which I also missed before. So the whole problem disappeared, but I don't know why. I already tried to solve it earlier by switching the phone off and on again. But this didn't matter. The only difference is that the phone now has been off a longer time ...?! – user1182314 Feb 8 at 6:53
The viewDidLoad is only called when the application is terminated. So you must terminate the application before you test this. You should really take a look at your application and call this before you make any network call. When you get an answer from the server, you should disable the network indicator. – Johan Karlsson Feb 8 at 7:35
I'm not sure what you mean. The application is terminated every time before a new build is loaded. And a new build is required to test changes. Do you mean something else? – user1182314 Feb 8 at 9:10
feedback

Your Answer

 
or
required, but never shown

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