block14
block14

Reputation: 619

Edit GUI without using base internationalization

I set my Xcode 5 project to use a build target of OSX 10.6, unchecked "Use Autolayout" for MainMenu.xib and followed this answer to turn off base internationalization. This resulted in my MainMenu.xib file being removed from my project. When I build and run my project the window layout is how I left it, but going into finder, opening MainMenu.xib in Interface Builder and changing it's layout does not effect my project when I go to build and run it again.

How do I change the GUI for projects set to a build target of 10.6?

Upvotes: 1

Views: 706

Answers (1)

block14
block14

Reputation: 619

Can be added again to the project by:

  1. Drag MainMenu.xib from Finder to the project files panel in Xcode.
  2. A dialog will open, select copy items (if needed), created folder references, and add to the project's target (not "test"), click Finish and it should work!

If a more complete answer is added, I will best answer it instead of my own.

Upvotes: 1

Related Questions