views:

241

answers:

1

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

+1  A: 

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.

Terry Longrie