使用带有Swift的Facebook链接页面打开Facebook应用

时间:2019-04-18 20:22:33

标签: ios swift facebook

在Google和Stackoverflow上进行了几次搜索后,我找不到解决问题的方法。

目前,我的应用程序通过Safari打开了Facebook页面。但我希望在Facebook应用程序中自动打开同一页面。您能给我一个解决方案吗?

这是我实现的代码,但是Facebook应用无法打开...

@IBAction func facebookButton(_ sender: Any) {

    if let appURL = URL(string: "facebook://") {

        let canOpen = UIApplication.shared.canOpenURL(appURL)
        print("\(canOpen)")

        let appName = "Facebook"
        let appScheme = "\(appName)://"
        let appSchemeURL = URL(string: appScheme)

        if

            UIApplication.shared.canOpenURL(appSchemeURL! as URL) {
            UIApplication.shared.open(appSchemeURL!, options: [:], completionHandler: nil)

        } else {

            let alert = UIAlertController(title: "\(appName) Erreur !", message: "L'application \(appName) ne peut pas s'ouvrir. Merci de l'installer depuis l'App Store.", preferredStyle: .alert)

            alert.addAction(UIAlertAction(title: "OK", style: .default, handler: nil))

            self.present(alert, animated: true, completion: nil)
        }
    }
}

1 个答案:

答案 0 :(得分:0)

您是否已在info.plist的LSApplicationQueriesSchemes中添加了Facebook方案?

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>facebook sceheme here</string>
</array>