diff --git a/README.md b/README.md index 3a0bbbd..916d99c 100644 --- a/README.md +++ b/README.md @@ -34,32 +34,32 @@ AFNetworking is architected to be as small and modular as possible, in order to
| Core | ||
|---|---|---|
| AFURLConnectionOperation | +AFURLConnectionOperation | An NSOperation that implements the NSURLConnection delegate methods. |
| HTTP Requests | ||
| AFHTTPRequestOperation | +AFHTTPRequestOperation | A subclass of AFURLConnectionOperation for requests using the HTTP or HTTPS protocols. It encapsulates the concept of acceptable status codes and content types, which determine the success or failure of a request. |
| AFJSONRequestOperation | +AFJSONRequestOperation | A subclass of AFHTTPRequestOperation for downloading and working with JSON response data. |
| AFXMLRequestOperation | +AFXMLRequestOperation | A subclass of AFHTTPRequestOperation for downloading and working with XML response data. |
| AFPropertyListRequestOperation | +AFPropertyListRequestOperation | A subclass of AFHTTPRequestOperation for downloading and deserializing objects with property list response data. |
| HTTP Client | ||
| AFHTTPClient | +AFHTTPClient | Captures the common patterns of communicating with an web application over HTTP, including: @@ -78,7 +78,7 @@ AFNetworking is architected to be as small and modular as possible, in order to |
| Images | ||
| AFImageRequestOperation | +AFImageRequestOperation | A subclass of AFHTTPRequestOperation for downloading and processing images. |