gpt4 book ai didi

iphone - 如何在 iOS 中发送 Get 请求?

转载 作者:太空狗 更新时间:2023-10-30 03:10:32 25 4
gpt4 key购买 nike

我正在创建一个库以从具有指定数据和方法类型的特定 URL 获取响应。为此,我正在使用 url 发出请求。但是当我设置它的方法类型时,它显示了无法识别的选择器发送异常 [NSURLRequest setHTTPMethod:]我将其设置为

[requestObject setHTTPMethod:@"GET"];

告诉我可能是什么问题。如果你有代码,也请提供给我。

最佳答案

NSMutableURLRequest *request = 
[NSMutableURLRequest requestWithURL:[NSURL
URLWithString:serverAddress]
cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
timeoutInterval:10
];

[request setHTTPMethod: @"GET"];

NSError *requestError = nil;
NSURLResponse *urlResponse = nil;


NSData *response1 =
[NSURLConnection sendSynchronousRequest:request
returningResponse:&urlResponse error:&requestError];

关于iphone - 如何在 iOS 中发送 Get 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6212453/

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