What is the best way to retrieve the user's Country or Region from their GameCenter account? Is this information exposed in the Apple APIs?
Asked
Active
Viewed 67 times
0
-
please, check this answer: https://stackoverflow.com/a/8534623/1040347 – Aleksey Potapov Nov 22 '19 at 10:13
1 Answers
0
A locale is a user's region setting on their device, and you can read it without asking for permission. If we're just going to ask what country the user is in:
let locale = Locale.current.regionCode

Halil İbrahim ŞENGÜL
- 11
- 2