将 Twitter API 集成到 iPhone 应用程序中会出现错误
在我的 iPhone 应用程序中,需要集成 Twitter API。
当我将 Twitter+ OAuth SDK 集成到我的应用程序中时,问题就出现了。它给出了错误,如下面的屏幕截图所示。
我已将 xml2.dylib 库添加到我的应用程序中,但仍然出现一些错误。
In my iPhone app there is a requirement for Twitter API integration.
Here the problem comes when I integrate the Twitter+ OAuth SDK into my app. It gives errors as shown below in the screen shot.
I have added the xml2.dylib library to my app but still it gives some errors.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我得到了答案。
我将其发布在这里是因为我不想回答我自己的问题以赢得声誉:)。我犯了一个愚蠢的错误。
我没有在项目设置中将“标题搜索路径”添加为
“\usr\include\xml2”
。I got the answer.
I am posting it here because I don't want to put answer to my own question to earn reputation :). I made a silly mistake.
I didn't add the "Header Search Paths" in project settings as
"\usr\include\xml2"
.删除从应用程序目标导入“xmlversion.h”、“tree.h”、“xmlIO.h”的头文件。
在我的一个项目中,我使用 MGTwitterEngine 库。在将库与我的应用程序集成时,我遇到了同样的问题。然后我阅读了以下链接,它帮助我解决了问题
http://aralbalkan.com/3133
Remove the header file(s) which is importing "xmlversion.h", "tree.h", "xmlIO.h" from your application target.
In one of my project, I am using MGTwitterEngine libray. I was facing the same problem while inegrating the library with my application. Then I read following link which helped me to solve the problem
http://aralbalkan.com/3133