0

我希望我的应用使用此代码在 Facebook 中分享一些内容。当我完成共享或取消共享时。然后它返回到我嵌入在 NavigationController 中的 ViewController。

后退栏按钮项消失(以某种方式隐藏)但仍可在所有视图控制器上运行。,

我正在使用 SWRevealViewController。

这是我展示 FB 共享对话框的代码:

FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];
content.contentTitle = @"K&D Running App";
content.imageURL = [NSURL URLWithString:imageUrl];
content.contentDescription = [self getStringPost];
content.contentURL = [NSURL URLWithString:webUrl];
[FBSDKShareDialog showFromViewController: self
                             withContent:content
                                delegate:nil];
4

0 回答 0