Skip to content

Commit 5610456

Browse files
committed
added void response
1 parent 85463f0 commit 5610456

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
return [client stringWithCompletionBlock: requestUrl
2+
method: @"{{httpMethod}}"
3+
queryParams: queryParams
4+
body: bodyDictionary
5+
headerParams: headerParams
6+
requestContentType: requestContentType
7+
responseContentType: responseContentType
8+
completionBlock: ^(NSString *data, NSError *error) {
9+
if (error) {
10+
completionBlock(error);
11+
return;
12+
}
13+
completionBlock(nil);
14+
}];

0 commit comments

Comments
 (0)