How to get locale currency price for in-app purchases in iOS?
Asked Answered
O

9

30

I want to find out user's App Store location. It means they are in US, Australia(AUD) store. Following code used.

- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response
{
    Books = response.products;
    if ([SKPaymentQueue canMakePayments] && [response.products count]>0) {

    }

    for (SKProduct *book in Books) {
        NSLocale *locat=[NSLocale currentLocale];
        NSString *strlocate=[locat objectForKey:NSLocaleCountryCode];

        NSLog(@"\n\n\n Device country== %@ \n\n\n",strlocate);

        NSLocale* storeLocale = book.priceLocale;
        NSString *storeCountry = (NSString*)CFLocaleGetValue((CFLocaleRef)storeLocale, kCFLocaleCountryCode);
        NSLog(@"\n\n\n store country== %@ \n\n\n",storeCountry);
    }
}

I want like wise if book tier is one means US $ 0.99 AUD 0.99 JPY 85 based on the app store price matrix table.

I tested in the simulator. I changed country name in iTunes, appstore and safari application in the system. but I get only US country code.

Edit: Settings-> General-> International->Region Format-> country

I tested in the device: Device country only changed. store country show US country code and price. I want to store country code before start inapp purchase time.

how many days once change the price for based on currency fluctuation? is it provide any api/ query for fluctuated price to known/update?

my inapp operation made one class. Before inapp operation made i want to display the local price to user same price effect reflect in the inapp operation.

i display the list of book free and paid books thats is list get from my server. in that i display the price for each item. those item price while processing the appstore it will show the dollar price. if appstore shown the price as also i want to shown. so that i want to send country code to my server from that my server respond that country related price list and currency symbol..

Oilbird answered 22/1, 2013 at 7:54 Comment(5)
Have you tried changing the language of the device?Herschel
yes. change the device language but no use for thatOilbird
I also tried with changing device language and region, but didn't work.Conney
check this link. It might help you.Abana
please check this thread , #5037471Overarm
A
33
productsRequest = [[SKProductsRequest alloc] initWithProductIdentifiers:prodcutIdentifier];
    productsRequest.delegate = self;
    
    // This will trigger the SKProductsRequestDelegate callbacks
    [productsRequest start];

This will call your delegate function. Once the above is done, it will automatically call the below mentioned function finally. This is where the app store request sent will be finalized.

(void)requestDidFinish:(SKRequest *)request
{
   
    
    SKProduct *book = [Books objectAtIndex:0];
        
    NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
    [numberFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
    [numberFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
    [numberFormatter setLocale:book.priceLocale];
    
    NSLocale* storeLocale = book.priceLocale;
    NSString *storeCountry = (NSString*)CFLocaleGetValue((CFLocaleRef)storeLocale, kCFLocaleCountryCode);
    
}

provide the Locale and country details as per your interest.

Afrit answered 31/1, 2013 at 9:1 Comment(4)
this operation am doing in the another viewcontroller. so how can i do in the current view controller?Oilbird
Check for the internet connection and fetch the values at the beginning and store it locally. So each time check for internet connection and do the process. Only then you will be able to show the latest itunes price.Afrit
can you get this without accessing the product?Dendriform
When are you using numberFormatter in this example...?Mortise
I
28

Here book is the SKProduct:

NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
[numberFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[numberFormatter setLocale:book.priceLocale];
NSString *formattedPrice = [numberFormatter stringFromNumber:book.price];

NSLog(@"%@", formattedPrice);

simply ask if anything unclear!

Regards,

Incomparable answered 25/1, 2013 at 10:11 Comment(6)
i want before start inapp purchase.. to display the local priceOilbird
please elaborate what do you mean by "before inapp", this code requires you to only request products and you can get product's prices and locales from response, no need to start inapp purchase process!Incomparable
my inapp operation made one class. Before inapp operation made i want to display the local price to user same price effect reflect in the inapp operation.Oilbird
i display the list of book free and paid books thats is list get from my server. in that i display the price for each item. those item price while processing the appstore it will show the dollar price. if appstore shown the price as also i want to shown. so that i want to send country code to my server from that my server respond that country related price list and currency symbol..Oilbird
You shouldn't save product price on your server, thats extremely discouraged, just save product identifiers on your server, then get those product identifiers from server and request their details from apple server, this approach is much better and would save you much hassle! but if you still want to access user's app store country code than here is very good answerIncomparable
I am trying to use this solution in Xcode, but reference to Books (above) results in an error - ...undeclared identifier.... Been trying to resolve this for days, driving me mad. Any help much appreciated.Evite
M
10

One line of code:

product is the SKProduct object instance:

NSString *price = [NSString stringWithFormat:@"%@%@ %@", [product.priceLocale objectForKey:NSLocaleCurrencySymbol], product.price, [product.priceLocale objectForKey:NSLocaleCurrencyCode]];

Results:

$1.39 USD

Mathur answered 20/5, 2016 at 13:41 Comment(1)
downvoted. This label is correct for USD and some other currencies but incorrect for example for RUB: 1.39 р.. You should always use NumberFormatterGiavani
P
10

In Swift 3:

    let numberFormatter = NumberFormatter()
    numberFormatter.formatterBehavior = .behavior10_4
    numberFormatter.numberStyle = .currency
    numberFormatter.locale = product.priceLocale
    let formattedPrice = numberFormatter.string(from: product.price)
Passionless answered 18/9, 2016 at 21:7 Comment(0)
B
6

i use this:

  NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
    [numberFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
    [numberFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
    [numberFormatter setLocale:basicProduct.priceLocale];
    NSString *formattedString = [numberFormatter stringFromNumber:basicProduct.price];
    NSLog(@"product with currency:%@", formattedString);
    [retDict setObject:formattedString forKey:@"basic_price"];
    NSLog(@"Product title: %@" , basicProduct.localizedTitle);
    NSLog(@"Product description: %@" , basicProduct.localizedDescription);
    NSLog(@"Product price: %@" , basicProduct.price);
    NSLog(@"Product id: %@" , basicProduct.productIdentifier);

in delegate method:

 - (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response

this can be done before the user clicks to start buying stuff..

Bufordbug answered 30/1, 2013 at 10:53 Comment(0)
L
5

You can go to know more on locale objects,also I think you also can use the currency locale by NSLocale ,as shown below

 NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[formatter setLocale:[NSLocale currentLocale];
NSString *localizedMoneyString = [formatter stringFromNumber:myCurrencyNSNumberObject];

and You would get the correct formatted currency string like this,

SKProduct *product = [self.products objectAtIndex:indexPath.row];
NSNumberFormatter *formatter = [[[NSNumberFormatter alloc] init] autorelease];
[formatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[formatter setLocale:product.priceLocale];
currencyString = [formatter stringFromNumber:product.price];

and i also tried this one in my app

NSDecimalNumber *amount = [NSDecimalNumber decimalNumberWithString:@"50.00"];
NSNumberFormatter *currencyFormat = [[NSNumberFormatter alloc] init];
NSLocale *locale = [NSLocale currentLocale];
[currencyFormat setNumberStyle:NSNumberFormatterCurrencyStyle];
[currencyFormat setLocale:locale];
NSLog(@"Amount with symbol: %@", [currencyFormat stringFromNumber:amount]);//Eg: $50.00
NSLog(@"Current Locale : %@", [locale localeIdentifier]);//Eg: en_US

Hope It will help you

Logos answered 30/1, 2013 at 10:7 Comment(0)
P
3

On device in productsResponse you receive correct product.price and product.priceLocale for AppStore account, you are currently logged in. So if you use this locale for formatting received price, you will get strings like "0.99$", "33,0 руб." and so on.

Phago answered 22/1, 2013 at 8:31 Comment(0)
M
-1

Use https://github.com/bizz84/SwiftyStoreKit, there is

localizedPrice in SKProduct

Directly use this member variable is OK, NO ANY CODE CONVERSION IS NEEDED!!

App Store will response the correct local price to your app, based on the current user's App Store Country/Region. How to change:

https://apple.stackexchange.com/a/89186/283550

I've tested the behaviour, it's correct after I changed the country from Hong Kong to Taiwan, I can see the price Tier 1 changed from HK$8 to $30. (Hong Kong Dollar to Taiwan Dollar)

Mori answered 20/9, 2018 at 5:36 Comment(2)
Looks like you have some extension for SKProduct named localizedPrice, because there is no default method with such title. If so you could provide here the code from this extension.Fingerling
thanks @zakhej, just checked it comes from SwiftyStoreKit, updated the answer, see if it helps?Mori
N
-4
create macro first then use it
#define CURRENCY_SYMBOL [[NSLocale currentLocale] objectForKey:NSLocaleCurrencySymbol]

NSLog(@"%@ %.2f",CURRENCY_SYMBOL,25.50);
Nil answered 6/2, 2014 at 10:16 Comment(3)
Obfuscating (that's the macro), and badly wrong - if a Japanese person is connected to a US store and sees a $20 in app purchase displayed as 20 Yen, they will be very angry with you and accuse you of fraud.Slinky
If Japanese wants to connect to us store, they will always see dollar sign.Mathur
I meant to agree with gnasher in that the locale of the system is different than the App Store you are connected toMathur

© 2022 - 2024 — McMap. All rights reserved.