当前位置:  开发笔记 > 编程语言 > 正文

我可以从iphone应用程序发出POST或GET请求吗?

如何解决《我可以从iphone应用程序发出POST或GET请求吗?》经验,为你挑选了2个好方法。

有没有办法使用iPhone SDK获得与HTTP POST或GET方法相同的结果?



1> Matt Gallagh..:

假设您的类有一个responseData实例变量,然后:

responseData = [[NSMutableData data] retain];

NSURLRequest *request =
    [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.domain.com/path"]];
[[NSURLConnection alloc] initWithRequest:request delegate:self];

然后将以下方法添加到您的类:

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    [responseData setLength:0];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    [responseData appendData:data];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
    // Show error
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    // Once this method is invoked, "responseData" contains the complete result
}

这将发送一个GET.到调用final方法时,responseData将包含整个HTTP响应(使用[[NSString alloc] initWithData:encoding:]转换为字符串.

或者,对于POST,将第一个代码块替换为:

NSMutableURLRequest *request =
        [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://www.domain.com/path"]];
[request setHTTPMethod:@"POST"];

NSString *postString = @"Some post string";
[request setHTTPBody:[postString dataUsingEncoding:NSUTF8StringEncoding]];



2> Ben Gottlieb..:

如果您使用的是Objective C,则需要使用NSURL,NSURLRequest和NURLConnection类.Apple的NSURLRequest doc.HttpRequest适用于JavaScript.

推荐阅读
赛亚兔备_393
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有