在我的应用中添加社交媒体共享时出现的问题

时间:2017-03-20 05:16:13

标签: ios swift xcode swift3 facebook-social-plugins

我在我的应用程序中添加社交媒体功能,我希望能够在用户在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")
    }   
}    

0 个答案:

没有答案