Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iOS 中的 Facebook 是否存在与 TWTweetComposeViewController 等效的功能?即用户只需实现一个简单的模态视图控制器就可以简单地将消息或图像发布到他们的时间线?
在 iOS6 上,您可以使用以下社交框架:
SLComposeViewController *viewController = [SLComposeViewController composeViewControllerForServiceType: SLServiceTypeFacebook]; [self presentViewController:viewController animated:YES completion:nil];
以下 WWDC2012 演示文稿很好地描述了社交框架的用法。
WWDC 2012 Session Videos“与Facebook、Twitter和新浪微博的整合
在 iOS 上可以使用FBNativeDialogFacebook SDK3.1 中提供的。See here FBNativeDialog的外观与TWTweetComposeViewController
FBNativeDialog
TWTweetComposeViewController
请参阅Facebook 开发人员文档中的本教程。