更新需要比以前晚的IOS
我商店中有一个需要 iOS 3.0 或更高版本的应用程序。我想添加一些需要 iOS 3.2 或更高版本的功能。已经安装该应用程序的用户会发生什么情况?他们能更新吗?我希望不会……因为如果他们这样做的话就会崩溃。
I have a app in store that requires iOS 3.0 or later. I want to add some features that need iOS 3.2 or later. What happen with users that already have the app installed? Will they be able to update? I hope not... because if they do it will crash.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将目标构建设置中的 iOS 部署目标设置为 iOS 3.2 。使用 iOS 3.0 的用户将无法安装更新的应用程序,因为您将最低操作系统版本设置为 3.2。对于运行 iOS <= 3.0 的用户,更新的应用程序不会显示在 App Store 的更新部分中,其他人会将此视为可用更新。
Set the iOS Deployment Target in the targets build settings to iOS 3.2 . Users who are using iOS 3.0 wouldn't be able to install the updated app because you set the min OS version to be 3.2. Updated app won't show in updates section of App Store for those users running iOS <= 3.0 others would see this as update available.