Hi, does anybody has a clue why downloaded html code via Wifi is different from the same url's content using Edge/3G? I noticed it when using the function because the output from Wifi has much more lines than the output from 3G. Analyzing the code I could see that only a few line breaks were detected. Here is the code:
NSString *htmlCode = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"www.any.url"]];
NSArray *htmlCodeByLines = [[NSArray alloc] init];
htmlCodeByLines = [htmlCode componentsSeparatedByString:@"\n"];
fg