user1589906
user1589906

Reputation:

what is the difference between NSURLResponse and NSHTTPURLResponse

Pardon me for this silly question but can anybody please tell me what is the difference between NSURLResponse and NSHTTPURLResponse

Upvotes: 0

Views: 1256

Answers (2)

dsgriffin
dsgriffin

Reputation: 68596

"NSURLResponse declares the programmatic interface for an object that accesses the response returned by an NSURLRequest instance.

NSURLResponse encapsulates the metadata associated with a URL load in a manner independent of protocol and URL scheme.

An NSHTTPURLResponse object represents a response to an HTTP URL load request. It’s a subclass of NSURLResponse that provides methods for accessing information specific to HTTP protocol responses." *

*Quote taken from the official Apple Developer documentation.

Upvotes: 1

Related Questions