我在我的应用程序中添加社交媒体功能,我希望能够在用户在Facebook上共享时将自己的图像放在右侧的框中。 我附上了下面使用的代码。如何制作它以便我可以添加图像,以便在用户在Facebook上发布时显示图像? 提前致谢
@IBAction func facebook(_ sender: Any)
{
if SLComposeViewController.isAvailable(forServiceType: SLServiceTypeFacebook)
{
let vc = SLComposeViewController(forServiceType: SLServiceTypeFacebook)
vc?.setInitialText("How many of these expressions can you relate to? http://www.example.com")
vc?.add(URL(string: "https://www.facebook.com"))
present(vc!, animated: true, completion: nil)
}
else
{
print("error")
}
}