views:

66

answers:

1

Hello,

I have localized my nib files, I've got both English and Polish version:

alt text

In my code I load the nib:

newPostUIViewController = [[NewPostUIViewController alloc] initWithNibName:@"NewPostView" bundle:nil]; 

Unfortunately when I run my app in Polish mode I still see the English version of the UI. Do I need to do something more to make my app display the Polish version of the UI?

A: 

Solved. Menu Build->Clean All Targets made the trick.

Jakub