所以我有一个分享按钮,我想添加一个链接到共享文本,该链接重定向到我在App Store上的游戏,但由于我的应用程序不在App Store上,但我必须以某种方式以编程方式生成它。我该怎么做?
func share() {
let highscore = UserDefaults.standard.integer(forKey: "highscore")
let activityVC = UIActivityViewController(activityItems: ["I just scored a new Highscore of \(highscore), can you beat me? /*Here should be the link to the game on the App Store*/"], applicationActivities: nil)
activityVC.popoverPresentationController?.sourceView = self.view
self.present(activityVC, animated: true, completion: nil)
}
答案 0 :(得分:2)
您可以在链接中使用iTunesConnect中的ID。只需在iTunesConnect中为您的应用添加条目,您就可以使用iTunesConnect在网址中为您的应用生成的ID。这将允许您在上传到App Store之前创建链接。
以下是在iTunesConnect上创建App Store条目后如何创建网址的链接:https://stackoverflow.com/a/2337601/3543861