Parsing XML, details and attributes, iphone

前端 未结 1 403
渐次进展
渐次进展 2021-01-28 18:42

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

相关标签:
1条回答
  • 2021-01-28 18:48

    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.

    0 讨论(0)
提交回复
热议问题