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

Is there a way to merge XCode 4.2 Storyboard files?

I'm working with another developer on an iPhone project and all my attempts at merging changes into a storyboard file have met with failure and after which Xcode is no longer able to load the storyboard. Consequently I have to do an svn revert and then redo my modifications.

share|improve this question
4  
as far as I know there is no way. and that is the argument to keep using XIB files when working in a team. – Marc Schlösser Mar 26 '12 at 15:36
A way to help with storyboards is to have multiple ones. see stackoverflow.com/questions/9575702/segue-to-another-storyboard – finneycanhelp Jun 2 '12 at 15:51
Just using XIBs instead of storyboards is not enough. See twitter.com/Arclite/status/207654104510627840 – finneycanhelp Jun 2 '12 at 15:56
These might be helpful: <stackoverflow.com/questions/8297701/…; <stackoverflow.com/questions/8756117/…; <forums.macrumors.com/showthread.php?t=1316064>; This one is also relevant to your question but it doesn't look like it has a definitive answer: <stackoverflow.com/questions/8705160/…; – qegal Jun 3 '12 at 19:20

1 Answer

Xcode has a handy little tool called FileMerge. As storyboard files are actually in a XML-style format, the FileMerge tool should be able to merge them. To find it, go to Xcode (on the menu bar at the top of the screen), Open Developer Tools, and click on FileMerge. Once it opens, click left, and find the path to your storyboard #1, and click open. Then, click on Right. Do the something. Next, click on compare. On your screen, it will show the XML-style metadata on the left and right. On the bottom, it will show the final. Click on merge. It will merge the 2 files for you.

share|improve this answer

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.