我用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];发布于 2017-10-05 05:17:45
更新到最新的Facebook框架。
pod 'FBSDKCoreKit', '~> 4.27.0'
pod 'FBSDKLoginKit', '~> 4.27.0'
pod 'FBSDKShareKit', '~> 4.27.0'https://stackoverflow.com/questions/46380944
复制相似问题