Adding class description to AFJSONRequestOperation

This commit is contained in:
Mattt Thompson 2011-09-21 23:21:41 -05:00
parent e21a7b5aa1
commit 4cb29d24ad

View file

@ -23,6 +23,9 @@
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
#import "AFHTTPRequestOperation.h" #import "AFHTTPRequestOperation.h"
/**
`AFJSONRequestOperation` is an `NSOperation` that wraps the callback from `AFHTTPRequestOperation` to determine the success or failure of a request based on its status code and response content type, and parse the response body into a JSON object.
*/
@interface AFJSONRequestOperation : AFHTTPRequestOperation @interface AFJSONRequestOperation : AFHTTPRequestOperation
///--------------------------------------- ///---------------------------------------