0

我在我的应用程序中使用 FBSDK 共享按钮,使用最新的 iOS 和 xcode 7 的 fbSDK,我想从我的应用程序共享一些关于朋友时间轴的信息,但是当使用 FBSDK SHARE 按钮时,只有正常的共享对话框打开,没有在朋友时间轴上共享的选项。 ..我根据 ios9 fbSDK 文档使用以下代码

     -(void)shareOnFriendsTimeline
{
      FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];
      content.contentURL = [NSURL URLWithString:@"https://www.example.com"];
      FBSDKShareButton *shareButton = [[FBSDKShareButton alloc] init];
      shareButton.shareContent = content;  
      shareButton.center = self.view.center;
      [self.view addSubview:shareButton];
}

请告诉我我在哪里做错了...在此先感谢

4

0 回答 0