Is there a way to use In-App Purchases such that they're NOT available in the USA, and at the same time figure out if they're available or not - and if not, perform special tasks for customers in the USA who can't use them?
feedback
|
|
You could use CLLocationManager to find the users location and then use MKReverseGeocoder to figure out what country they are in. Some people will deny access to location information. As a backup you could use the language that the current device is in (but there are some obvious issues with this approach):
Then you just need to use a conditional statement:
| |||
feedback
|
|
Perhaps you could send a product request in the background, and only display the purchase button if something comes back. The drawback is that there could be issues (store outages, network issues, you take the product down temporarily) that would make the product request fail, so you'd have to design the alternative UI appropriately.
| |||
|
feedback
|