I have an app that used NSURLConnection and worked just fine on iOS 5, now that same code is getting an instant timeout in iOS 6.
Any idea on what might have changed between the two releases of 5.1 and 6.0?
In iOS 5.1 and previous versions the timeout interval being set when the request body was constructed was ignored for one reason of another.
iOS 6 seems to pay attention and is more precise about the timeout interval so just make sure to set the interval to a value large enough to allow time for the request to complete.
NSMutableURLRequest *request=[[NSMutableURLRequest alloc]
initWithURL:[NSURL URLWithString: url]
cachePolicy:NSURLRequestReloadIgnoringCacheData
timeoutInterval:60.0];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With