xCode4 和 iOS5 上的 MGTwitter 引擎 - 语义问题

发布于 2024-12-12 01:56:55 字数 345 浏览 0 评论 0原文

我的应用程序在应用程序商店中并且运行良好。我现在想将其从 xCode3 迁移到 xCode4 和 iOS5。我已经解决了大部分问题,但仍然受到一些与 Matt Gemmell 出色的 MGTwitterEngine 有关的警告(见下文)的困扰。

我知道我可以忽略它们,但我不愿意。以前没有这样的警告。我环顾四周,似乎没有其他人遇到这个问题。我还知道我可以尝试更改 11 个警告中每一个的代码,但我怀疑是某些整体设置或路径导致了问题。

任何正确方向的指示都将受到热烈欢迎。

非常感谢,

克里斯。 在此处输入图像描述

My App is in the App Store and working fine. I now want to migrate it from xCode3 to xCode4 and iOS5. I've resolved the majority of the issues, but am stuck with some warnings I'm getting (see below) relating to Matt Gemmell's excellent MGTwitterEngine.

I know I could ignore them, but I'd rather not. There were no such warnings before. I've searched around and no one else seems to be having this trouble. I also know I could try to change the code for each of the 11 warnings, but I suspect its some overall setting or path that's causing the issue.

Any pointers in the right direction would be warmly welcomed.

Many thanks,

Chris.
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

掩耳倾听 2024-12-19 01:56:55

我相信新的编译器希望您声明协议合规性。在您的情况下,您的 twitter 引擎委托类的接口声明(在您的标头中)应包含 < MGTwitterEngineDelegate>。像这样:

@interface YourDelegateObject : NSObject < MGTwitterEngineDelegate >

I believe the new compiler wants you to declare protocol compliance. In your case, your twitter engine delegate class's interface declaration (in your header) should contain < MGTwitterEngineDelegate >. Like this:

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