I was trying to use MBProgressHUD with NSURLConnection.
The example in Demo project of MBProgressHUD reports:
- (IBAction)showURL:(id)sender { NS
I solved the problem this way, switching from NSURLRequest to NSMutableURLRequestand setting the value none to the encoding (previously in gzip)
NSURLRequest
NSMutableURLRequest
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:anURL]; [request addValue:@"" forHTTPHeaderField:@"Accept-Encoding"];