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?

link|improve this question

You definitely can publish several versions of an app with different AppIDs for different countries. But I'd like to see real answer also. :) – Alexander Babaev Dec 8 '11 at 21:44
Heard rumors Apple might reject "clone apps" for whatever reason. – dontWatchMyProfile Dec 9 '11 at 11:24
I think that you can talk to Apple about this. They must not be clones, but the same app. In every store there must be only one of them. Location detection sometimes is not acceptable. :) – Alexander Babaev Dec 9 '11 at 12:48
feedback

2 Answers

up vote 2 down vote accepted

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):

NSString * language = [[NSLocale preferredLanguages] objectAtIndex:0];
http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes

Then you just need to use a conditional statement:

if(in USA){ 
  do whatever, don't allow in-app purchases
} else {
  allow in app purchases
}
link|improve this answer
Or: If Location services don't work / are disabled, handle it like if the user was in the USA. Good idea. – dontWatchMyProfile Dec 9 '11 at 11:27
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.

SKProductsRequest *productRequest = [[SKProductsRequest alloc] initWithProductIdentifiers:[NSSet setWithObject:productId]]; 
productRequest.delegate = self;
[productRequest start];


-(void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response {
    if ([[response products] count] > 0) {
        // display purchase link
    } else {
        // display alternative UI
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.