我对 IOS 开发相当陌生,我需要使用本机方法将数据发布到服务。
我想我需要做这样的事情吗?
NSString *content = @"field1=42&field2=Hello";
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://www.mywebsite.co.uk/SendEmail.svc/request"]];
[request setHTTPMethod:@"POST"];
[request setHTTPBody:[content dataUsingEncoding:NSISOLatin1StringEncoding]];
// generates an autoreleased NSURLConnection
[NSURLConnection connectionWithRequest:request delegate:self];
我不确定我是否正确?我可以通过手动构建 url 或在 fiddler 中发布 json 来成功发布到服务。