如何从我的应用程序链接instagram帐户?

时间:2019-10-22 20:16:32

标签: hyperlink instagram

我希望用户将应用程序从我的应用程序转移到他所提及的帐户的instagram!

我尝试包含此代码,但对我而言不起作用。

@IBAction func openInstagramButtonPressed(_ sender: Any) {

    let instagram = URL(string: "instagram://app")!

    if UIApplication.shared.canOpenURL(instagram) {
        UIApplication.shared.open(instagram, options: ["":""], completionHandler: nil)
    } else {
        print("Instagram not installed")
    }
}

我只希望用户按下一个按钮,即可在应用程序或网络中从我的应用程序更改为他的Instagram帐户。

0 个答案:

没有答案