Nicsoft
Nicsoft

Reputation: 3712

Best practice updating a localized iPhone application

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

Answers (2)

TheRonin
TheRonin

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

Mundi
Mundi

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

Related Questions