Is it possible to detect which App Store (US, German, UK, France...etc) the user is logged into on his device?
Thanks
Is it possible to detect which App Store (US, German, UK, France...etc) the user is logged into on his device?
Thanks
With this snippet of code you can determinethe users country. So that means that in most cases the store is also set to the country they live in.
- (NSString *)getUserCountry {
NSLocale *locale = [NSLocale currentLocale];
return [locale objectForKey: NSLocaleCountryCode];
}
For example this can return the Netherlands or England if you live in the Netherlands or England,