且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在iOS中检测iTunes Store的国家/地区

更新时间:2023-12-04 15:51:10

NSString *countryCode = [[NSLocale currentLocale] objectForKey: NSLocaleCountryCode];

会为您提供一个标识符,例如: US(美国),ES(西班牙)等。

will get you an identifier like e.g. "US" (United States), "ES" (Spain), etc.

因为你发现国家意味着没问题。我们希望iTunes商店必须是设备国家。

Because you find country means no problem. We hope the iTunes store must be Device country.