我有一个gif的文档目录路径我想发布到Facebook,但不幸的是,当我使用这个过程时,它会发布静态图像而不是动画。我知道它是动画的,因为我可以将相同的图像保存到我的相机胶卷中并看到它的动画效果。有没有发布这个GIF的动画版本?
let image = UIImage(contentsOfFile: path) // document directory path
let sharePhoto = FBSDKSharePhoto()
sharePhoto.image = image
let content = FBSDKSharePhotoContent()
content.photos = [sharePhoto]
let shareDialog: FBSDKShareDialog = FBSDKShareDialog()
shareDialog.shareContent = content
shareDialog.mode = .native
shareDialog.show()