我是IOS开发的新手。我正在开发一个应用程序,我必须在其中进行xml解析。这需要一些时间,所以我希望在此期间显示活动指标。谁能告诉我怎么做? 在哪里举办和停止活动指标;
感谢您的帮助;
答案 0 :(得分:0)
如果你在谈论你使用的顶级小家伙:
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES/NO];
答案 1 :(得分:0)
你可以分别在didReceiveResponse:和didFinishLoading中启动和停止
答案 2 :(得分:0)
步骤1:使用activity indiactor(LoadingView)创建新视图 第2步:在调用Web服务之前调用showLoading方法 第3步:完成解析xml后调用removeLoading
- (void)showLoading {
lview = [[LoadingView alloc] init];
[self.view insertSubview:lview.view aboveSubview:self.parentViewController.view];
}
-(void)removeLoading{
[lview.view removeFromSuperview];
[lview release];
}