-2

更具体地说,这是我在目标 c 中需要做的,这相当于什么?

$ch=curl_init();
curl_setopt($ch, CURLOPT_URL,"api.example.com");
curl_setopt($ch, CURLOPT_POSTFIELDS, "a message to the site");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST,"GET" );
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept: Application/json'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec ($ch);
curl_close ($ch);
4

1 回答 1

0

NSURLRequest使用and怎么样NSURLConnection

NSURLRequest:您可以使用URL初始化它,将POST变量设置为HTTP Body,确保正确设置头部(例如:google 示例)。

然后加载NSURLRequest一个NSURLConnection,甚至是异步的,你想要的同步的。

请参阅将数据附加到 POST NSURLRequestiPhone 使用 NSURLConnection 发送 POST

于 2012-04-04T06:12:27.260 回答