I am attempting to download a website but get only about a quarter of the entire site.
NSString *tagiString = @"http://www.tagesanzeiger.ch";
NSURL *tagiURL = [NSURL URLWithString:tagiString];
NSError *error;
NSString *text =[NSString stringWithContentsOfURL:tagiURL
encoding:NSASCIIStringEncoding
error:&error];
I don't receive any errors indicating the download did not complete. Any ideas?