I am looking with below code we are able to open facebook or twitter iOS app but is there a way to do it for Patreon App ?
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)
}
I also included on Info.plist the below lines:
<array>
<string>instagram</string>
<string>fb</string>
</array>
Would you please help me by letting me know how to also add Patreon App on info.plist
?