Search code examples
iosobjective-cios9nsurlconnection

Weird error code 4294966295 for NSURLConnection


I am getting an unusual error when using NSURLConnection:

enter image description here

There are no logs, or nothing to go here. All I can get is the error code 4294966295. Any idea what that might be?

I am running XCode7 and iOS9 on my device. I have already disabled ATS.


Solution

  • 4294966295 is -1001 when seen as a signed 32 bit int. This is NSURLErrorTimedOut. You can look up the codes in NSURLError.h.