xCode4 和 iOS5 上的 MGTwitter 引擎 - 语义问题
我的应用程序在应用程序商店中并且运行良好。我现在想将其从 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信新的编译器希望您声明协议合规性。在您的情况下,您的 twitter 引擎委托类的接口声明(在您的标头中)应包含
< 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: