我希望我的应用可以使用此代码在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];