推特和 iOS 5
我需要为 iOS 5 集成 Twitter,但我不能使用 Xcode 4 的 Twitter 框架。这可能吗?我该怎么做?
非常感谢。
I need to integrate Twitter for iOS 5 but I musn't use Twitter Framework of Xcode 4. Is it possible? How can I do this?
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要直接使用 Twitter API。
You will need to use the Twitter API directly.
iOS 5 中的 Twitter 框架仅在您包含该框架时才可用。当然。
如果您想保持与 iOS 4 的兼容性(为什么要这样做?),您应该对框架使用弱链接。这使得该应用程序也可以在 iOS 4 上运行。
如果您不想完全使用该框架,那么您肯定会错过所有新功能,例如自动帐户导入。在这种情况下,您可以与 API 本身对话(请参阅 http://dev.twitter.com 了解更多信息)或使用第三方库。
The Twitter framework in iOS 5 is only available when you include the framework. Of course.
If you want to retain compatibility with iOS 4 (why'd you do that anyway?), you should use weak linking against the framework. This allows the app to run on iOS 4 as well.
If you don't want to use the framework altogether, you definitely miss out on all the new features such as automatic account importing. In that case you'd talk to the API itself (see http://dev.twitter.com for more info) or use a third party library.
Matt Gemmell 的
MGTwitterEngine
可以满足您的需求。源代码可以从 https://github.com/mattgemmell/MGTwitterEngine 下载
Matt Gemmell's
MGTwitterEngine
may do what you need.The source code can be downloaded from https://github.com/mattgemmell/MGTwitterEngine