Только для MacOS:
Вот код:
NSString *xmlPath = [[NSBundle mainBundle] pathForResource:@"xml" ofType:@"xml"];
NSString *xml = [NSString stringWithContentsOfFile:xmlPath encoding:NSUTF8StringEncoding error:nil];
NSXMLDocument *xmlDocument = [[[NSXMLDocument alloc] initWithXMLString:xml options:0 error:nil] autorelease];
NSMutableArray *array = [NSMutableArray array];
for (NSXMLElement *node in [xmlDocument.rootElement nodesForXPath:@"//house" error:nil])
{
NSMutableDictionary *dict = [NSMutableDictionary dictionary];
NSMutableArray *photos = [NSMutableArray array];
for (NSXMLElement *subNode in node.children)
{
if ([subNode.name isEqualToString:@"photo"])
[photos addObject:subNode.stringValue];
else
[dict setObject:subNode.stringValue forKey:subNode.name];
}
[dict setObject:photos forKey:@"photos"];
[array addObject:dict];
}
NSLog(@"%@", array);
А вот вывод:
(
{
address = "123 Main St, Georgetown Washingon D.C.";
photos = (
"http://www.photo.com/images/1.jpg",
"http://www.photo.com/images/2.jpg",
"http://www.photo.com/images/3.jpg",
"http://www.photo.com/images/4.jpg"
);
title = "123 Main St";
},
{
address = "1234 Main St, Georgetown Washingon D.C.";
photos = (
"http://www.photo.com/images/1.jpg",
"http://www.photo.com/images/2.jpg",
"http://www.photo.com/images/3.jpg",
"http://www.photo.com/images/4.jpg"
);
title = "1234 Main St";
}
}