I am using FBSDKShareDialog
to share an image on facebook, but on IOS11 it is not working. The Facebook share dialog is not opening.
How can I share the post and have it work on IOS11 and previous versions as well.
My previous working code:
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];