创建一个弹出窗口“此应用程序的新版本可用”
我想在我的 iPhone 应用程序中显示一个弹出窗口,当应用程序商店中有新版本可用时提醒用户,并直接链接到该应用程序的 iTunes 页面。
你知道我该如何实现吗?
感谢您的帮助。
I would like to display a popup in my iPhone app that alert users when a new version is available in the appstore with a direct link to the iTunes page of the app.
Do you know how can I implement that?
Thank you for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将应用程序中的版本存储在文件或其他内容中。然后,将最新版本号存储在服务器上的某个位置。当应用程序启动时,查看它们是否匹配。
Store the version in the app in a file or something. Then, store the latest version number on a server somewhere. When the app launches, see if they match.
您可以查看 https://github.com/nicklockwood/iVersion 了解如何向 appStore 询问哪个版本在商店上。
you can checkout https://github.com/nicklockwood/iVersion for how to ask the appStore which version is on the store.