我正在查看下面的代码,我们可以打开 facebook 或 twitter iOS 应用程序,但是有没有办法为 Patreon 应用程序做到这一点?
let appURL = NSURL(string: "fb://profile/\(facebook)")!
let webURL = NSURL(string: "https://www.facebook.com/\(facebook)")!
let application = UIApplication.shared
if application.canOpenURL(appURL as URL) {
application.open(appURL as URL)
} else {
application.open(webURL as URL)
}
我还在 Info.plist 中包含以下几行:
<array>
<string>instagram</string>
<string>fb</string>
</array>
你能帮我告诉我如何添加Patreon Appinfo.plist
吗?