【发布时间】:2018-03-04 23:47:02
【问题描述】:
我正在使用FBSDKShareDialog 在 facebook 上分享图像,但在 IOS11 上它不起作用。 Facebook 分享对话框未打开。
我如何分享帖子并让它在 IOS11 和以前的版本上也能正常工作。
我之前的工作代码:
FBSDKSharePhoto *photo = [[FBSDKSharePhoto alloc] init];
photo.image = img;
photo.userGenerated = YES;
FBSDKSharePhotoContent *content = [[FBSDKSharePhotoContent alloc] init];
content.photos = @[photo];
[FBSDKShareDialog showFromViewController:self withContent:content delegate:self];
【问题讨论】:
-
您在设备中使用 facebook 登录吗?
-
是的@NisarAhmad
标签: objective-c ios11 fbsdk