I'm sending XML request to some server and getting some response data from it using NSURLConnection:
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSMutableString *receivedString = [[NSMutableString alloc] initWithData:_receivedData encoding:NSUTF8StringEncoding];
NSLog(@"Size of DATA: %d",[_receivedData length]);
NSLog(@"Body: %@", receivedString);
}
When length of my data is about 4000 - I can normally see the received data in output. But when length of data becomes greater (6000, 10000, etc.), Output shows that my receivedString becomes null!
How can I still save my data to the string, when it's length becomes greater? Thank you.
(receivedString == nil)evaluate to YES? What happens if you log[receivedString substringToIndex:500];? Does that also show up as null or actual text? – David Rönnqvist Sep 7 '12 at 21:45