-3

See title. What's the difference between the return value of GDataElement instance methods:

-(NSString *) XMLString;

and

-(NSString *) stringValue;
SChang
  • 1,669
  • 2
  • 13
  • 13
  • 1
    You need to add more details to your question. – Kyle Mar 01 '13 at 19:50
  • The method declarations don't provide readers with any more useful information. We want to see the work you've put in to answering this yourself. What does the output of the methods look like? What do the differences _seem_ to be? What causes your confusion about the differences? What does the relvant documentation say and why doesn't it answer your question? – jscs Mar 01 '13 at 20:07

1 Answers1

0

XMLString returns the raw string representation of the node, and stringValue returns the value inside the tag, such as

<tag>this is string value</tag>.
Doyouknow
  • 24
  • 3