touchxml下的测试

阅读更多
1、touchXML配置
这个不费太多笔墨了,从网上下来的https://github.com/TouchCode/TouchXML
然后将Source文件夹移到你的项目里,然后,在libxml2.dylib添加到工程。由于本人的时IOS5 用的是ARC,因此,需要在Build Phases 里的Compile Source里对每一个文件的后面都加上这句:-fno-objc-arc
点击project-》Edit Porject Settings。在窗口的搜索栏中输入 header search.然后双击
Header Search Paths 后面空白。点击左下角+,打上对号,然后在Path中输入/usr/include/libxml2

以上就完成了touchXMl的配置

2、在自己的.h文件里增加#import "TouchXML.h"引入该类

3、新建个xml在supportintFile里myFile2.xml

   
       
            01
            iPhoneDeveloper's
            123
       

       
            02
            ipadDeveloper's
            220
       

       
            03
            wp7developer
            281
       

       
            04
            windows phone 7
            300
       

   

    0
    aa


4、.m文件实现如下
获取xml的CXMLDocument
   //获取配置文件的xml
- (CXMLDocument *)getMyCXMLDocument{
    //获取myFile2.xml的文件路径
    NSString *xmlPath = [[NSBundle mainBundle]pathForResource:@"myFile2" ofType:@"xml"];
    NSLog(@"xmlPath:%@",xmlPath);
    NSData *data = [NSData dataWithContentsOfFile:xmlPath];//填充到NSData里
    //利用data构造出CXMLDocument
    CXMLDocument *doc = [[CXMLDocument alloc]initWithData:data options:0 error:nil];
    return doc;

}
//测试API用的
- (void) parseMyfile:(CXMLDocument *) document{
   
    //获取头节点books
    CXMLDocument *resultsNode = [[document nodesForXPath:@"books" error:nil] lastObject];
    //获取ReturnCode节点
    NSArray *ReturnCode = [resultsNode nodesForXPath:@"ReturnCode" error:nil];
    NSString *resultCode = [[ReturnCode objectAtIndex:0]stringValue];//returnCode节点的值
    NSLog(@"%@,ReturnCode count:%d",resultCode,[ReturnCode count]);

    //由于ReturnCode是第二级,因此用// ,作用等于上面,此时的document 与resultsNode可以通用
    NSArray *ReturnCode2 = [document nodesForXPath:@"//ReturnCode" error:nil];
    NSString *resultCode2 = [[ReturnCode objectAtIndex:0]stringValue];//returnCode节点的值
    NSLog(@"%@,ReturnCode count:%d",resultCode2,[ReturnCode2 count]);

    //获取Results节点,在头节点root下的Results节点,因此,这里用resultsNode而非document,
    //即根据resultsNode下再寻找Results,以Results作为新的CXMLDocument,将会找所有的iphone节点并放在Array里
    CXMLDocument *resultsBooksArray = [[resultsNode nodesForXPath:@"Results" error:nil]lastObject];
    NSArray *iphonebookArr = [resultsBooksArray nodesForXPath:@"iphonebook" error:nil];
    NSLog(@"iphonebookArr count:%d",[iphonebookArr count]);
    //倘若当前的节点存在的话
    if(iphonebookArr != nil && [iphonebookArr count]>0){
        //将其赋值到CXMLNode里,获取iphonebookArr里的节点对象
        for ( CXMLNode *node in iphonebookArr) {
            NSString *id = [[node nodeForXPath:@"id" error:nil] stringValue];
            NSString *name = [[node nodeForXPath:@"name" error:nil] stringValue];
            NSString *page = [[node nodeForXPath:@"page" error:nil] stringValue];
            NSLog(@"id:%@,name:%@,page:%@",id,name,page);
        }
    }
}
输出结果如下:
2013-02-23 17:50:21.644 touchXML[2798:f803] 0,ReturnCode count:1
2013-02-23 17:50:21.645 touchXML[2798:f803] 0,ReturnCode count:1
2013-02-23 17:50:21.645 touchXML[2798:f803] iphonebookArr count:2
2013-02-23 17:50:21.646 touchXML[2798:f803] id:01,name:iPhoneDeveloper's,page:123
2013-02-23 17:50:21.646 touchXML[2798:f803] id:02,name:ipadDeveloper's,page:220
-------
以上的代码部分是从网上找的,但是却有部分问题,我进行修改了部分,如此,可获取了这个xml的数据

你可能感兴趣的:(ios,xml,xcode,touchXML)