2

How can I localize the "Cancel" button in the AppiRater view controller that is popped over?

I was looking in the AppiRater code... it makes us of the SKStoreProductViewController like this:

SKStoreProductViewController *storeViewController = [[SKStoreProductViewController alloc] init];

Basically I want to something like this:

[storeViewcontroller.navigationBar.cancelButton setText:NSLocalizedString(@"Cancel", nil)];

Any ideas?

jszumski
  • 7,430
  • 11
  • 40
  • 53
electronix384128
  • 6,625
  • 11
  • 45
  • 67

1 Answers1

2

Appirator? Rating SDK?

Here is localized version of Appirator.

Make sure you added all .lproj folder to your Xcode project.

enter image description here

Guru
  • 21,652
  • 10
  • 63
  • 102
  • Thanks, i have added it. Still in the simulator it is not showing, but on the device its fine ... – electronix384128 Apr 20 '13 at 15:50
  • Perhaps your language setting in the simulator is different from your device? – omz Apr 20 '13 at 16:13
  • no the simulator is set to german. also the app is showing german. but the appirator popover is completely in english. i don't know why. on the device everything is correctly in german... so no issues... thx – electronix384128 Apr 29 '13 at 00:17
  • This is because appirator doesnot work in simulator. You can't rate/review an app via simulator. – Sundus Alamovic May 09 '14 at 13:34