added void response

This commit is contained in:
Tony Tam 2015-03-24 19:57:51 -07:00
parent 85463f049c
commit 56104566fc

View File

@ -0,0 +1,14 @@
return [client stringWithCompletionBlock: requestUrl
method: @"{{httpMethod}}"
queryParams: queryParams
body: bodyDictionary
headerParams: headerParams
requestContentType: requestContentType
responseContentType: responseContentType
completionBlock: ^(NSString *data, NSError *error) {
if (error) {
completionBlock(error);
return;
}
completionBlock(nil);
}];