実際に私がやりたいことは、POST-Request を含む JSONString をサーバーに送信し、応答のヘッダーで「OK」を達成することです。
この目的のためにどのようなフレームワークを提案しますか? 私はすでにrestkitを見ましたが、私の目的には大きすぎます。私はスリムなフレームワーク/ソリューションを好みます。
前もって感謝します
@dasblinkenlight がすでにコメントしているので、ここでフレームワークが必要なようには思えません。おそらく NSURLRequest を使用する必要があります。
-(BOOL)sendRequestToURL:(NSString*)stringURL withJSON:(NSString*)JSONAsAString{
NSError *jsonERROR =nil;
__block BOOL success = NO;
NSOperationQueue* queue = [[NSOperationQueue alloc]init];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc]initWithURL:[NSURL URLWithString:stringURL]];
request.HTTPMethod = @"POST";
request.HTTPBody = [NSJSONSerialization dataWithJSONObject:JSONAsAString options:0 error:&jsonERROR];
if (!jsonERROR){
[NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError * error) {
NSHTTPURLResponse *httpResonse = (NSHTTPURLResponse*)response;
if (httpResonse.statusCode == 200 ) {
success = YES;
}
}];
} else {
NSLog(@"jsonERROR: %@", jsonERROR.description);
}
return NO;
}