From 4cb29d24ad4e3759144fb90ed0b94e5b60aa94df Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Wed, 21 Sep 2011 23:21:41 -0500 Subject: [PATCH] Adding class description to AFJSONRequestOperation --- AFNetworking/AFJSONRequestOperation.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AFNetworking/AFJSONRequestOperation.h b/AFNetworking/AFJSONRequestOperation.h index bd89943..00fc2b6 100644 --- a/AFNetworking/AFJSONRequestOperation.h +++ b/AFNetworking/AFJSONRequestOperation.h @@ -23,6 +23,9 @@ #import #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 ///---------------------------------------