I have a part of code who works as expected on all iOS versions, but not on iOS 9:
NSData *response = [NSData dataWithContentsOfURL: [NSURL URLWithString: url] options:NSDataReadingUncached error:&error];
It's a simple json text.
I got this error:
Error Domain=NSCocoaErrorDomain Code=256 "The file “xxx.php” couldn’t be opened." UserInfo={NSURL=http://xxx.xxx.com/xxx/xxx.php?lang=fr}
How this url can be intepreted as a file ? Response = nil...
Thanks.