1

在我的“didFinishLaunchingWithOptions”方法中,我在我的 GUI 中创建了一个 UIProgressView,然后我调用一个方法来调用一个带有 NSURLConnection 的 WebService 来获取带有 SOAP 消息的 XML。

在委托方法“connectionDidFinishLoading”中,我在另一个类中使用 NSXMLParser 解析 XML。

问题是我想在解析 XML 时更新我的​​ UIProgressView,但是在解析整个 XML 之后它会更新。我听说这是因为 NSURLconnection 在主线程上运行并阻塞了 UI。

如何同时解析和更新进度条?

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {

NSString * theXML = [[NSString alloc] initWithBytes:[webData mutableBytes] length:[webData length] encoding:NSUTF8StringEncoding];

NSLog( @"The XML : %@", theXML );

[theXML release];

theXmlParser = [[NSXMLParser alloc] initWithData:webData];

XMLParser * theParseur = [[XMLParser alloc] initXMLParser];

[theXmlParser setDelegate:theParseur];

[theXmlParser setShouldProcessNamespaces:NO];
[theXmlParser setShouldReportNamespacePrefixes:NO];
[theXmlParser setShouldResolveExternalEntities:NO];

NSLog(@"Begin parsing...");

BOOL success = [theXmlParser parse];

if( success ) {

    // my code...

} else {

    NSLog(@"XML partner : End Parsing > ERROR : %@", [[theXmlParser  parserError] localizedDescription] );

    [theXmlParser release];
}

[connection release];
[webData release];
}
4

2 回答 2

1

嘿,你可以更新进度条
-(void)connection:(NSURLConnection *)connection didReceiveData: (NSData *)data { //update progress bar here
}

于 2011-11-02T08:35:08.403 回答
0

NSURLConnection加载数据时不会阻塞主线程,但您所做的所有事情connectionDidFinishLoading:都会阻塞。如果您知道文档中可能有多少元素,则可以使用NSXMLParserDelegate回调:- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict保持看到元素的运行总数,“完成百分比”将是该数字除以元素总数。在该回调中,您可以更新您的进度条。

如果不知道文档的先验长度,就很难估计它在处理过程中的距离,除非您保留处理的字节数的总和。

于 2012-07-03T19:27:45.923 回答