gpt4 book ai didi

ios - 重定向到 native 邮件应用程序的 AppStore

转载 作者:行者123 更新时间:2023-11-30 11:25:05 25 4
gpt4 key购买 nike

我想使用以下代码将 AppStore 重定向到 native iOS 邮件应用程序,但它不起作用,我还用 http 替换了 itms,但随后它打开了 safari 浏览器,但我需要打开 AppStore。

我使用以下代码,它适用于 HTTP 而不是 itms。我是否需要在 plist 中添加更多内容,因为“允许任意加载”已经是 True。请建议我任何解决这个问题的想法。

    let urlStr = "itms://itunes.apple.com/in/app/mail/id1108187098?mt=8"
if #available(iOS 10.0, *) {
UIApplication.shared.open(URL(string: urlStr)!, options: [:], completionHandler: nil)

} else {
UIApplication.shared.openURL(URL(string: urlStr)!)
}

最佳答案

从 iOS 6 开始,正确的方法是使用 SKStoreProductViewController 类。

https://stackoverflow.com/a/32008404/5148089

func openStoreProductWithiTunesItemIdentifier(identifier: String) {
let storeViewController = SKStoreProductViewController()
storeViewController.delegate = self

let parameters = [ SKStoreProductParameterITunesItemIdentifier : identifier]
storeViewController.loadProductWithParameters(parameters) { [weak self] (loaded, error) -> Void in
if loaded {
// Parent class of self is UIViewContorller
self?.presentViewController(storeViewController, animated: true, completion: nil)
}
}
}
func productViewControllerDidFinish(viewController: SKStoreProductViewController) {
viewController.dismissViewControllerAnimated(true, completion: nil)
}

不要忘记导入和委托(delegate):

import StoreKit

class RateMeViewController: UIViewController, SKStoreProductViewControllerDelegate {

简单地调用这个:

openStoreProductWithiTunesItemIdentifier("1108187098")

关于ios - 重定向到 native 邮件应用程序的 AppStore,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50829979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com