将 ASIHTTPRequest 包含到 iphone 项目中的问题
我有一个应用程序,其中必须使用 ASIHTTPRequest
才能从服务器端接收一些 JSON 数据。 为此,我做了以下操作:
将这些类包含到我的项目中
和这个
还有这个
我还包括以下框架:
我收到 64 个错误,如下所示:
我只想使用这个 #import "ASIHTTPRequest.h"
但我不知道要导入哪些类。请有人告诉我应该包含更多内容才能使其正常工作。谢谢。
I have an app in which I have to use ASIHTTPRequest
in order to receive some JSON data from server side.
For this I have done the following:
included this classes into my project
and this
and also this
I also included the following frameworks:
and I get 64 errors looking like this:
I want to use only this #import "ASIHTTPRequest.h"
but I don't know what classes to import.Please someone tell me what should I include more in order for this to work.Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
添加到您的项目中
(项目 -> 编辑项目设置 -> 构建)并找到“搜索路径”。在“标题搜索路径”中添加以下路径:
Happy Coding :-)
Include to your project
Add (Project->Edit Project Settings->Build) and find the "Search Paths". In "Header Search Paths" add the following path:
Happy Coding :-)
请参阅此 ASIHTTPRequest 您需要它从服务器获取 json 数据
See this ASIHTTPRequest You need this to get json Data from server
对于可达性例外,您必须包含一些其他文件;)
For Reachability exception, you must include some other files ;)