将XML子文件夹解析为iphone

时间:2013-01-08 13:25:23

标签: iphone ios xml ipad

XML文件: 我无法解析下面显示的XML子文件夹

enter image description here

我可以使用方法解析xml文件的内容:

-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict
{
    currentelement=[elementName copy];
    if ( [elementName isEqualToString:@"Content"] ) {
        item=[[NSMutableDictionary alloc]init];


    }
}

但是我无法解析子文件夹"PictureURL",如果我在

中解析它,我将变为null
-(void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
        if ([currentelement isEqualToString:@"PictureURL"])
        {                   
           [item setObject:string forKey:@"Info8"];
        }
}

任何人都可以让我知道如何访问XML的子文件夹。提前谢谢

0 个答案:

没有答案