I am downloading XML to populate an array used to build UITableView. Until I'm informed otherwise, I believe I have to completely download the array before I can display it in the table (also it's text only and extremely small, so it downloads in a reasonable time on the slowest possible connection). It does take about 3-5 seconds at it's slowest, so it would be nice to display the activity indicator in the status bar while it downloads.
I make the call to...
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
...before I do ANYTHING (then turn it off once I've done EVERYTHING), but it just pops and quits in about the minimum amount of milliseconds that make it visible to the human eye.
Any suggestions as to why I'm having this experience?
Thanks, Z@K!