我正在使用Xcode v7.2和Obj-c。我正在向现有的iOS应用添加不同的语言。主要问题是SKProduct localizedTitle(iTC上的显示名称)总是以英语返回。 我可以显示正确本地化和格式化的价格。我已经在SO上准备了许多类似的问题,并尝试了其解决方案,但它似乎对我不起作用(例如:this和this)。
所需结果:
这是我已经设置的:
[[FirstDrawIAPHelper sharedInstance] requestProductsWithCompletionHandler:^(BOOL success, NSArray *products) {
if (success) {
storeProducts = products;
SKProduct *product = (SKProduct *)storeProducts;
//Format price
priceFormatter = [[NSNumberFormatter alloc] init];
[priceFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
[priceFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
//Iterate thru the buttons using tipButton Outlet Collection
for (int i = 0; i < [self.tipButton count]; i++) {
UIButton *button = [[UIButton alloc] init];
button = self.tipButton[i];
//product = storeProducts[i];
product = products[i];
//Set the price locale
[priceFormatter setLocale:product.priceLocale];
//Localize the button title and append the price
NSString *btnTxt = [product.localizedTitle stringByAppendingString:@" "];
NSString *price = [priceFormatter stringFromNumber:product.price];
NSString *newBtn = [btnTxt stringByAppendingString:price];
NSLog(@"\nID: %@, Price: %@, Button: %@",[product localizedTitle], price, btnTxt);
//Set button title
[button setTitle:newBtn forState:UIControlStateNormal];
}
}
结果:
我正确地看到了该国家/地区的IAP价格,但按钮的标题未正确定位。该按钮的标题仍为英文。我设置的每种语言都会发生这种情况。
有人可以在这里发现我在做什么错吗?我是否错误地认为SKProduct.localizedTitle不返回该语言的iTC显示名称(App Store)?任何帮助,将不胜感激,谢谢。
最佳答案