Reputation: 6166
How can i get the corresponding value of an attribute of an NSXMlelement object from a self constructed NSXMLNode.
Upvotes: 0
Views: 1461
Reputation: 769
If your struct type is a NSXMLElement then I use:
NSString *valueInTag = [[element elementForName:@"name"] stringValue];
Upvotes: 0