Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Project has en, es and ar localizations. For support Arabian UI I've added changed .xib files to ar.lproj.

So, now project has following structure:

en.lproj
  - Localizable.strings
  - One.xib
  - Two.xib
  - Three.xib

es.lproj
  - Localizable.strings


ar.lproj
  - Localizable.strings
  - One.xib

Note: I don't need to change UI of Two.xib and Three.xib for Arabian locale and need to change nothing for Spanish.

In this case when I try to load any .xib for Spanish locale - I get error 'cannot load nib'.

Is there any way to avoid adding each .xib file to each defined locale?

Thank you in advance.

share|improve this question

1 Answer

As long as the Xcode project file reflects the same localization structure, the app should work correctly. According to the NSBundle docs,

The method first looks for a matching resource file in the non-localized resource directory of the specified bundle. (In Mac OS X, this directory is typically called Resources but in iOS, it is the main bundle directory.) If a matching resource file is not found, it then looks in the top level of any available language-specific “.lproj” directories. (The search order for the language-specific directories corresponds to the user’s preferences.) It does not recurse through other subdirectories at any of these locations.

You can check that actual path to see what the problem is:

NSLog([[NSBundle mainBundle] pathForResource:@"One" ofType:@"nib"]);
share|improve this answer
Hi, bdunagan. Thank you for reply. In my case when I try to load One.xib file from Spanish locale I get following error: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle </var/mobile/Applications/DA7C42A5-BB4B-4DA3-B6BB-6B896D227C98/My App.app> (loaded)' with name 'One'' – berec Jun 29 '11 at 11:10
It seems like iOS looks for localized .xib files only in the same localization folder as current device locale. And if a matching resource file is not found, it then doesn't look in the en.lproj directory for one. – berec Jun 29 '11 at 11:15
It just looks for localized .xib in es.lproj and result of NSLog in my example is "(null)". In the same time when I turn device to en locale then result of log is correct path to resource. – berec Jun 29 '11 at 11:23
I was able to reproduce the same crash once, but I think Xcode was confused. Try creating a new project and setting up the localization for a single XIB in the same way. – bdunagan Jul 3 '11 at 16:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.