I tried to find the proper way to work with storyboards when there are many devs on the same project and can't find anything useful.

Before storyboards, we would lock the nib while using it to make sure others would not make modifications at the same time. This way, merge conflicts with nibs were quite rare.

But now, with storyboards, I can't see having a dev lock the whole thing for an hour before another one can work on its part! And sure enough, if two of them modify the storyboard, there is a merge conflict. Xcode XML files aren't nice to merge and often enough, the merge causes problem and will in fact corrupt the file so we would prefer to avoid those conflicts.

I wanted to know how other peoples are dealing with this problem? What workflow does other team use?

Thanks!

link|improve this question

80% accept rate
We use multiple storyboards to get around this problem. However, we try and divide them sensibly into particular user journeys so that we are not just using storyboards in the same way as nibs. This is a good question though! – Scott Sherwood Nov 10 '11 at 8:54
2  
I'm sure most team are struggling with this issue but there does not seem to be any flawless or official workflow for this. I'd really like to know how Apple manages this with their internal teams, it sure would help us! – droussel Nov 16 '11 at 16:03
2  
We have decided not to go with storyboards for now. Mostly because we do an "app-map" of an application in omnigraffle, so the visual part offers us no real value. Secondly - they offer little real value in a multi-developer context - but have a few drawbacks: 1. Hard to version control (as you mentioned) 2. Don't work on ios previous to 5 (which still is most users) 3. Most apps are not that linear – Magnus Dec 20 '11 at 20:44
feedback

2 Answers

The storyboard file format is very different from previous XIB formats, so you might give it a try. If you have real examples of changes that cause merge conflicts which you can't easily resolve, your best bet is to file bugs with Apple at http://bugreporter.apple.com.

In storyboards, items tend to be placed in different areas of the file based on where they're located on the canvas, so once you have a larger storyboard conflicts may become less common.

link|improve this answer
feedback

If I have a merge conflict I just open the file with the "Open As" and "Source Code" and take either the mine>>>> section or the section of the other collaborator.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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