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?
Well, they are defined in the sense that
[NSHTTPURLResponse localizedStringForStatusCode:(NSInteger)statusCode]
can return a string for the given status code. Is that what you are looking for?