Select the info.plist file

I localize my Info.plist file because I have different names for the application in different languages.

Since I did this, the project window shows this button: select the info.plist file.

enter image description here

If I click on this button, a window without selection will open. And worse, the project will not compile, which will lead to an error : it is impossible to read data from '/Users/user/Documents/myApp/Info.plist': the file "Info.plist" cannot be opened because there is no such file.

In fact, the message is true because Xcode removed it from this place and added a copy of Info.plist to each localized directory (en.lproj, PT.lproj, etc.).

So ... how can I fix this?

+7
source share
1 answer

After struggling with Xcode, the only solution that works is the following: http://useyourloaf.com/blog/2010/12/15/localize-iphone-application-name.html

You cannot localize Info.plist like me. you need to create a string file and localize it. Some magic links to the string file at info.plist.

+2
source

All Articles