如何在iOS中发送Get请求?
我正在制作一个库,以从具有指定数据和方法类型的特定 URL 获取响应。为此,我使用 url 发出请求。但是当我设置其方法类型时,它显示了 [NSURLRequest setHTTPMethod:]
中发送的无法识别的选择器异常 我将其设置为
[requestObject setHTTPMethod:@"GET"];
告诉我可能是什么问题。如果有的话也给我提供代码。
I am making a library to get response from a particular URL with specified data and method type. For this, I am making a request with url. But when I set its method type, it shows an exception of unrecognized selector send in [NSURLRequest setHTTPMethod:]
I am setting it as
[requestObject setHTTPMethod:@"GET"];
Tell me what could be the problem. Also provide me the code if you have.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
确保您的 requestObject 类型为
NSMutableURLRequest
。Make sure your requestObject is of type
NSMutableURLRequest
.只需调用并使用:
Simply call and use: