Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

joshsroka

macrumors member
Original poster
Oct 2, 2008
39
0
Why does my ball not stop spinning?

- (void)viewDidLoad {

NSString *urlAddress = @"http://reader.mac.com/mobile/v1/http%3A%2F%2Fwww.wjfk.com%2Fpages%2Fpodcast%2F119567.rss";

//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];

//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];

//Load the request in the UIWebView.
[webView loadRequest:requestObj];

UIApplication* app = [UIApplication sharedApplication];
app.networkActivityIndicatorVisible = YES;
}

- (void)webViewDidFinishLoad:(UIWebView*)webView {
UIApplication* app = [UIApplication sharedApplication];
app.networkActivityIndicatorVisible = NO;
}
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.