-2

我正在为 IOS 7.0(在 Objective C 中)构建一个本机应用程序。
该应用程序要求用户注册/登录/将当前位置发送到服务器/从服务器获取请求......
我的意思是我如何使用 Objective C(内置支持)与服务器交谈。

顺便说一句
,我知道 php 和 node.js。有什么理由让我的应用程序更喜欢一个。我的应用程序必须跟踪用户当前位置并将其不断发送到服务器。(可能为此使用ajax)。此外,它必须侦听用户的某些操作。那么,在可扩展性方面,是否有任何理由更喜欢 php 而不是 node.js。

4

1 回答 1

-1

哥们试试谷歌。无论如何,我希望这会减少你的谷歌时间

       NSURL *url=[NSURL URLWithString:self.serverURL];


        NSMutableURLRequest *requst = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:120];

        NSLog(@"request %@ url: %@",requst,self.serviceURL);
        //-->data that needs to be posted to the server...
        NSString* postDataString  = [self preparePostData:dict];


        [requst setHTTPMethod:@"POST"];
        [requst setHTTPBody:[postDataString dataUsingEncoding:NSUTF8StringEncoding]];
        [requst setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
        [requst setValue:@"application/json" forHTTPHeaderField:@"Accept"];

        MyAppDelegate *sharedInstance = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];


        [NSURLConnection sendAsynchronousRequest:requst queue:[NSOperationQueue currentQueue] completionHandler:^(NSURLResponse *respone, NSData *data, NSError *error) {
// Code to handle request data
}
于 2013-09-14T19:15:00.147 回答