0

我从未使用过 Web 服务,并认为我现在会尝试。

我有一个 php 文件,它输出一个简单的字符串,1 或 0。如何在目标 c 中建立连接并将 php 字符串存储为 NSString?如果不是太多,我会很感激一些示例代码。

我试过在谷歌上搜索它,但不知道要搜索什么。

提前致谢!

4

2 回答 2

0

您可以使用

php -f somescript.php

执行 PHP 脚本,并获取输出。

于 2012-06-16T12:25:33.870 回答
0

请在 Github 上查看:AFNetworking

非常容易使用!

例如 :

NSURL *url = [NSURL URLWithString:@"http://api.twitter.com/1/statuses/public_timeline.json"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
    NSLog(@"Public Timeline: %@", JSON);
} failure:nil];
[operation start];
于 2012-06-16T12:29:31.883 回答