gpt4 book ai didi

cocoa - 如何在 iPhone 上获取 cocoa 中的 http

转载 作者:可可西里 更新时间:2023-11-01 15:15:52 26 4
gpt4 key购买 nike

任何人都可以粘贴一些关于如何在 cocoa 中执行简单的 http 获取的代码吗?

最佳答案

给你!

这个从网络服务器抓取图像。

    NSURL *url = [ NSURL URLWithString: [ NSString stringWithFormat:@"http://www.somewebsite.com/demo.png"] ]; 
image = [ [ UIImage alloc ] initWithData: [ NSData dataWithContentsOfURL: url ] ];

或者,这个抓取一个网页...

    NSURL *url = [ NSURL URLWithString:[ NSString stringWithFormat: @"http://www.google.com/search?q=%@", query ] ];
NSURLRequest *request = [ NSURLRequest requestWithURL: url ];

要异步执行此操作,您应该查看 NSURLConnection .

关于cocoa - 如何在 iPhone 上获取 cocoa 中的 http,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/706369/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com