iOS iTunes store country
i am wondering if there is a solution to find out, in which country the user downloaded an application. For example: app x has been downloaded in USA when the user opens up the app, the app will check in which country it was downloaded. In this example the the return would be "USA" Does any one hase an idea on how to solve this? If you have any In-App Purchases available, you can read the locale from the SKProduct. As a fallback, use the device's locale. NSLocale *locale; SKProduct *baseProduct = nil; // replace as applicable if (baseProduct) { locale = baseProduct.priceLocale; // from the