Reputation: 3712
I have created an internationalized iPhone application. Now it's time to update it. What is the best practice for doing this? Do I have to edit each xib for each language or is there some way to have a "master template" that I can edit?
Upvotes: 0
Views: 283
Reputation: 1315
I think this link can help you.
That explain all ways to convert/update application.
I think the best way to you is to use ibtool
in terminal (follow link to understand)
Upvotes: 1
Reputation: 80273
Yes, I am afraid that is how it works. You will have to go through each language separately. However, the nib files can be summarized with the ibtools
utility included in the SDK. Refer to Apple's International Programming Topics for clear instructions.
Upvotes: 1