【发布时间】:2016-07-01 12:22:46
【问题描述】:
我无法通过我的 iOS 应用在 Facebook 上分享链接。 我正在使用下面的代码,它在几个月前就开始工作了。 我以前做的唯一设置是“import Social”
@IBAction func facebookShareButtonTouched(sender: AnyObject) {
if SLComposeViewController.isAvailableForServiceType(SLServiceTypeFacebook) {
let fbShare:SLComposeViewController = SLComposeViewController(forServiceType: SLServiceTypeFacebook)
fbShare.addURL(NSURL(fileURLWithPath: "https://www.xxx.ro/info/article/\(newsObject.id!)"))
self.presentViewController(fbShare, 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)
}
}
现在它会打开 facebook 分享对话框,但它不包含任何链接。 有谁知道它改变了什么?
【问题讨论】:
-
可以截图吗?
标签: xcode swift facebook share facebook-share