Apple Store 是否支持同一应用程序在不同允许国家/地区的多个版本?

Does Apple Store support multiple versions of the same application with different allowed countries?

我有一个适用于所有国家/地区的第 1 版应用程序。假设现在已经开发了第 2 版,但出于某种原因,我还不能向欧盟发布第 2 版。有没有办法让我将应用程序提交给 Apple 审查,然后发布此版本 2,同时版本 1 仍可供欧盟使用?

然后,比方说,一个月后,我得到 "OK" 为欧盟启用版本 2。然后我可以从应用商店下架第 1 版,并强制所有人升级到第 2 版吗?

感谢您提供任何信息。

This is not possible using Apple iTunes Connect. Apple allows to offer previous version of apps for older iOS devices but not offer previous versions country wise

一个简单的替代方法是从代码端简单地管理它。

if (device.locale == @"EU") {
   // use version 1 features 
}
else {
   // use version 2 features
}