I have an XML tag like
I can parse this element, but I get only the s character in my string.
<title>Transport information Classic World's </title>
And I parsed it like this, but in my object I get only the 's' character.
 if ([elementname isEqualToString:@"title"])
 {
      currentTweet.content = currentNodeContent;
 }
How can I decode the whole text in title ?
 
     
     
     
    