November 2013
Beginner
592 pages
17h 49m
English
The existing InfoPlist.strings string table is for localizing items from CarValet-Info.plist, such as the application name. You need a different string table to localize the interface.
The first step is to add the calls to read localized strings. You call NSLocalizedString with a key to the string table and an argument documenting the meaning of the UI element. Make the following changes in ViewController.m:
1. In displayCurrentCarInfo, change the withBaseString: argument in the call to the updateLabel:withBaseString:andCount: method:
withBaseString:NSLocalizedString( @"Car Number", @"Label for the index number of the current car")
2. Similarly, change the ...
Read now
Unlock full access