I am getting lastest tweet and show it in my app. I put it in a NSMutableString and initialize that string like below in my xmlparser.m file:
- (void) parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
currentNodeContent = (NSMutableString *) [string stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
}
I can get the tweet but somehow it cuts some of the tweets and shows some part of it. For example tweet is
Video games in the classroom? Social media & #technology can change education http://bit.ly/KfGViF @GOVERNING #edtech
but what it shows is:
#technology can change education http://bit.ly/KfGViF @GOVERNING #edtech
Why do you think it is? I tried to initialize currentNodeContent in other ways to but I could not solve the problem.
Do you have any idea why is this happening?