在Facebook上分享,文字没有出现在手机上。 (SWIFT)

时间:2016-06-12 20:40:23

标签: ios swift facebook share

我的应用中有一个'分享在Facebook上'按钮。但它并不像我想要的那样有效。

我尝试了不同的代码,但没有一个在我的手机上工作。 弹出窗口,如果需要,我可以分享一些东西。但是我的iphone上没有显示initialText,而它确实在模拟器上显示了它? 只有在模拟器上我才会收到facebook不能正常工作的警报。

任何人都知道如何解决这个问题。或者甚至可能吗?

这是我使用的代码:

if SLComposeViewController.isAvailableForServiceType(SLServiceTypeFacebook){
            let facebookSheet:SLComposeViewController = SLComposeViewController(forServiceType: SLServiceTypeFacebook)
            facebookSheet.setInitialText("\(antwoordTxt.text!)")
            self.presentViewController(facebookSheet, animated: true, completion: nil)
        } else {
            let alert = UIAlertController(title: "Accounts", message: "Please login to a Facebook account to share.", preferredStyle: UIAlertControllerStyle.Alert)
            alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil))
            self.presentViewController(alert, animated: true, completion: nil)
        }

1 个答案:

答案 0 :(得分:0)

显然你不能再将自动文本交给Facebook了。所以我的答案是......:p