With NSURLConnection, I’m able to get the error code returned by my php web service, but is there a way to get the error description instead? To get the error code I’m using the following code:
int code = [httpResponse statusCode];
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
NSHTTPURLResponsedoesn’t contain the error code description as you can see in the documentation.