将 ASIHTTPRequest 包含到 iphone 项目中的问题

发布于 2024-12-13 07:26:59 字数 966 浏览 0 评论 0原文

我有一个应用程序,其中必须使用 ASIHTTPRequest 才能从服务器端接收一些 JSON 数据。 为此,我做了以下操作:

将这些类包含到我的项目中

替代文字

和这个

替代文本

还有这个

“替代文本”

我还包括以下框架:

替代文字

我收到 64 个错误,如下所示:

alt 文字

我只想使用这个 #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

alt text

and this

alt text

and also this

alt text

I also included the following frameworks:

alt text

and I get 64 errors looking like this:

alt text

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

忆沫 2024-12-20 07:26:59

添加到您的项目中

  Reachability.h 

  Reachability.m

(项目 -> 编辑项目设置 -> 构建)并找到“搜索路径”。在“标题搜索路径”中添加以下路径:

/usr/include/libxml2

Happy Coding :-)

Include to your project

  Reachability.h 

  Reachability.m

Add (Project->Edit Project Settings->Build) and find the "Search Paths". In "Header Search Paths" add the following path:

/usr/include/libxml2

Happy Coding :-)

在你怀里撒娇 2024-12-20 07:26:59

请参阅此 ASIHTTPRequest 您需要它从服务器获取 json 数据

See this ASIHTTPRequest You need this to get json Data from server

怎樣才叫好 2024-12-20 07:26:59

For Reachability exception, you must include some other files ;)

From: http://allseeing-i.com/ASIHTTPRequest/Setup-instructions

iPhone projects must also include:

  • ASIAuthenticationDialog.h

  • ASIAuthenticationDialog.m

  • Reachability.h (in the External/Reachability folder)

  • Reachability.m (in the External/Reachability folder)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文