Does anyone know if/where the HTTP status codes, as specified here, are defined in the iOS SDK? Or should I expect to manually re-define them in a constants file?
Thanks.
|
Does anyone know if/where the HTTP status codes, as specified here, are defined in the iOS SDK? Or should I expect to manually re-define them in a constants file? Thanks. |
|||||||||||
|
|
I did a
in
and came up empty handed so the answer is almost certainly "no". |
|||||||||
|
|
Well, they are defined in the sense that
can return a string for the given status code. Is that what you are looking for? |
|||
|
|
Some of them are defined in /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h :
Obviously, not all of them are present here, I don't know if others are present elsewhere. |
|||
|
|
|
The http status code can be defined by the server response. When there is a connection, you can use the NSURLResponse to read out the statusCode. Those 4** response can be defined internally on your server. |
|||
|
|
I also could not find a header file which I expected to exist, so I had to write one of my own. With HTTPStatusCodes.h contained in nv-ios-http-status project at GitHub, dispatch based on HTTP status codes can be written like the following.
I hope HTTPStatusCodes.h can save time of you and other developers. |
|||
|
|