4

有没有办法检查它?我有一个应用程序 URL,如果用户有英国应用商店,我不想打开它。不幸的是,这个应用程序在许多国家都可以使用,所以当我在链接上加上“gb”时,它会被重定向到用户的本地区域。

4

2 回答 2

5

对于 iOS 13+,请查看SKStoreFront课程。它有一个countryCode返回属于用户当前 App Store 区域的国家代码。

迅速

if let storefront = SKPaymentQueue.default().storefront {
    print(storefront.countryCode) // Returns an Alpha-3 country code (USA, GBR etc.)
}

对象 C

[SKPaymentQueue defaultQueue].storefront.countryCode; // Returns an Alpha-3 country code (USA, GBR etc.)

SKStoreFront即使您的应用程序不提供任何购买,您也应该能够通过将 StoreKit 框架添加到您的项目来访问该实例。

有关更多信息,请查看:https ://developer.apple.com/documentation/storekit/skstorefront

于 2020-08-28T09:07:54.000 回答
3

您可以使用应用内购买商店套件来实现此目的。

使用 SKProductsRequest 请求产品列表,然后检查返回的 SKProduct 的 priceLocale 以查看用户的 AppStore 是否是英国的。

于 2012-07-10T07:04:18.443 回答