tableView视图列表3: 把解析到的XML数据显示在TableView上

前端之家收集整理的这篇文章主要介绍了tableView视图列表3: 把解析到的XML数据显示在TableView上前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1,首先获取文件目录

  1. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
  2. NSString *documentsDirectory = [paths objectAtIndex:0];
  3. chatFile = [[NSString alloc] initWithString:[documentsDirectory stringByAppendingPathComponent:CHATSFILE_NAME]];

2,加载文件

- (void) loadThread:(NSString *)xmlFile {
  • NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  • NSXMLParser *chatLogParser = [[NSXMLParser alloc] initWithContentsOfURL:[NSURLfileURLWithPath:xmlFile]];
  • [chatLogParser setDelegate:self];
  • [currentString setString:@""];//记录当前节点的值
  • [currentChatInfo removeAllObjects];//节点对象
  • [chatLogParser parse];//开始XML解析
  • [self performSelectorOnMainThread:@selector(finshLoadFile) withObject:nil waitUntilDone:YES];//创建线程

  • }
  • 原文链接:https://www.f2er.com/xml/297594.html

    猜你在找的XML相关文章