在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)
}
}
}
答案 0 :(得分:0)
您是否已在info.plist的LSApplicationQueriesSchemes中添加了Facebook方案?
<key>LSApplicationQueriesSchemes</key>
<array>
<string>facebook sceheme here</string>
</array>