Nithin
Nithin

Reputation: 6475

Parsing XML, details and attributes, iphone

I'm not sure about parsing an xml with attributes. have seen a similar question here But it shows to get an attribute of intValue. But i need to get the attributes of string type,How to do that?? Images of xml and the relevant portions are given in the following links

Click here for xml and here for required data

Upvotes: 0

Views: 980

Answers (1)

Terry Longrie
Terry Longrie

Reputation: 367

This answer to the linked question should work for you as well. The contents of attributeDict are already NStrings. All that is going on extra in the linked answer that they are calling the intValue method on the returned NSString to parse that string into an int. In your case, you don't need this little bit of an extra step. If you just do this:

NSString * stringValue = [attributeDict objectForKey:@"attribute"];

you'll have the value of the attribute called "attribute" in a string.

Upvotes: 1

Related Questions