gpt4 book ai didi

swift - 将应用商店启动到特定的应用列表

转载 作者:搜寻专家 更新时间:2023-11-01 06:50:48 25 4
gpt4 key购买 nike

我的应用要求用户安装 Apple Pages。如果没有安装,我会启动应用商店让他们安装页面。有什么我可以附加到“com.apple.AppStore”bundle id 以将其打开到应用程序商店页面列表。

这是应用程序商店中 Pages 的网址 https://apps.apple.com/us/app/pages/id409201541?mt=12

if let appStoreURL =  NSWorkspace.shared.urlForApplication(withBundleIdentifier: "com.apple.AppStore") {             
NSWorkspace.shared.open(appStoreURL)
}

最佳答案

@IBAction func itunesClicked(_ sender: NSButton) {
let access = "macappstore://itunes.apple.com/app/id"
let appIdee = "409201541"
let more = "?mt=12"
let str: String = access + appIdee + more
if let urlStr = URL(string: str) {
NSWorkspace.shared.open(urlStr)
}
}

如果您想发表评论...

@IBAction func itunesClicked(_ sender: NSButton) {
let access = "macappstore://itunes.apple.com/app/id"
let appIdee = "409201541"
let more = "?action=write-review&mt=8"
let str: String = access + appIdee + more
if let urlStr = URL(string: str) {
NSWorkspace.shared.open(urlStr)
}
}

关于swift - 将应用商店启动到特定的应用列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57378551/

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