Reputation: 13
I have a XML file along the lines of this:
<houses>
<house>
<title>123 Main St</title>
<address>123 Main St, Georgetown Washingon D.C.</address>
<photo>http://www.photo.com/images/1.jpg</photo>
<photo>http://www.photo.com/images/2.jpg</photo>
<photo>http://www.photo.com/images/3.jpg</photo>
<photo>http://www.photo.com/images/4.jpg</photo>
</house>
<house>
<title>1234 Main St</title>
<address>1234 Main St, Georgetown Washingon D.C.</address>
<photo>http://www.photo.com/images/1.jpg</photo>
<photo>http://www.photo.com/images/2.jpg</photo>
<photo>http://www.photo.com/images/3.jpg</photo>
<photo>http://www.photo.com/images/4.jpg</photo>
</house>
and need a way to populate a NSArray with NSDictonarys of the info between the <house>
tags.
I have found Parse XML item "Category" into an NSArray with NSDictionary <solved/> but cannot seem to make it work. If anyone has any ideas how to do this or a better way to import data into my app and help would greatly appreciated.
Upvotes: 1
Views: 1202
Reputation: 791
For MacOS only :
Here is code:
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);
And here is output:
(
{
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";
}
}
Upvotes: 1