如何在iOS7中将数据发布到端点?

时间:2013-12-12 00:48:28

标签: ios post ios7

我知道有很多方法可以从iOS应用程序从nsurlconnection发布到asihttprequest。

在iOS7中,将一些变量异步发布到终点的首选或最佳实践方法是什么?

我的端点可以通过以下方式调用:

curl -d 'username=tt&email=tt@example.com' 127.0.0.1/register

1 个答案:

答案 0 :(得分:0)

我最终使用了afnetworking。这种方法非常好用。

-(void) postDictionary:(NSDictionary *)data toEndpoint:(NSString *)endpoint{
    AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];

    [manager POST:endpoint parameters:data success:^(AFHTTPRequestOperation *operation, id responseObject) {
        NSLog(@"JSON: %@", responseObject);
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
        NSLog(@"Error: %@", error);
    }];

}