views:

194

answers:

3

Hi All,

What is "Error Domain=NSURLErrorDomain Code=-1020 UserInfo=0x1694a0 "Operation could not be completed. (NSURLErrorDomain error -1020.)"" due to ??

A: 

Try googling NSURLErrorDomain

Tomen
A: 

It can not decode the data......

mihirpmehta
That's right the error of means the data can not be interpreted.
RRB
A: 

Surprisingly, I can not see the error code -1020 there.:(.

typedef enum
{

   NSURLErrorBadServerResponse = -1011,

   NSURLErrorUserCancelledAuthentication = -1012,

   NSURLErrorUserAuthenticationRequired = -1013,

   NSURLErrorZeroByteResource = -1014,

   NSURLErrorCannotDecodeRawData = -1015,

   NSURLErrorCannotDecodeContentData = -1016,

   NSURLErrorCannotParseResponse = -1017,
}

I believe that this one is a right table right?

vodkhang