gpt4 book ai didi

ios - 如何获取 iOS 应用商店评论页面的 URL

转载 作者:行者123 更新时间:2023-12-01 19:39:09 25 4
gpt4 key购买 nike

我需要为应用商店和 Google Play 商店创建应用评论页面的 URL 链接。我已经设法为 Google Play 做,但没有为应用商店做事。应用商店的链接是https://apps.apple.com/gb/app/emmas-diary/id594428605

谷歌播放网址(这是有效的)

https://play.google.com/store/apps/details?id=com.pgs.emmasdiary&hl=en_GB&showAllReviews=true

适用于 iOS 的应用商店

???

最佳答案

由于 iOS 10.3 reviewing app 略有改动,下面的代码spinet将清除所有内容

func rateApp() {
if #available(iOS 10.3, *) {
SKStoreReviewController.requestReview() // managed automatically by SKStoreReviewController
} else if let url = URL(string: "itms-apps://itunes.apple.com/app/" + "yourAppID") {
UIApplication.shared.open(url, options: [ : ], completionHandler: nil) // managed manually through concatenating the URL
}
}

对于引用。检查下面的图片(图片来源:谷歌图片。)

enter image description here

希望回答你😊

关于ios - 如何获取 iOS 应用商店评论页面的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57671609/

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