我正在使用 - FBSDKShareKit (4.40.0):我想在 facebook 上分享图片。它应该是可点击的,并且应该像 Endomondo 应用程序一样打开网站。
我已经尝试过这段代码,但 url 覆盖了照片并且它们没有显示:
let sharePhoto = FBSDKSharePhoto()
sharePhoto.image = someImage
let content = FBSDKSharePhotoContent()
content.photos = [sharePhoto];
content.contentURL = URL(string: "https://facebook.com")!
FBSDKShareDialog.show(from: self, with: content, delegate: nil)
他们是怎么做到的?