Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I recover a storyboard in xcode?

I have a little bit of a situation here. A few days ago, I accidentally deleted my storyboard, so immediately went into my trash and dragged the storyboard back into the project. Everything worked fine. But then I just emptied my trash and the storyboard no longer appears to be in my project; the storyboard file is showing up red and when I click on it, nothing loads. To my dismay, I thought all was lost so I started building a new storyboard and connecting the classes, outlets and actions.

I then went to build the project on the simulator, and it's building with the OLD storyboard. I thought it might just be loading it from memory so I deleted the app on the simulator and built the project again. Same thing again. So then I built it to my iPhone and somehow the old storyboard is still there even though I can't find it anywhere in my project.

What's going on here? Does this mean I'll be able to recover my storyboard?

Also, when I open the project inspector and go to Build Phases > Copy Bundle Resources, and right click on Storyboard.storyboard, and click show in finder, It shows my new storyboard. enter image description here

like image 700
Scott Avatar asked Jul 12 '14 16:07

Scott


1 Answers

1 - There is a place in Derived Data with following path:

/Users/<Your user name>/Library/Developer/Xcode/DerivedData/<Your App Name>/Build/Products/Debug-iphonesimulator/<app Name.app>

Browse to that location.

2 - On your .app file, right click -> Show Package Contents.

3 - In resulting directory list, browse the folder Base.lproj. Under that you are likely to find your old storyboard.

If you have done Delete Derived Data from XCode organizer, you are not likely to find anything up here. But fortunately, XCode doesn't delete it twice against your own wishes. So try your luck.

like image 189
Nirav Bhatt Avatar answered Nov 02 '22 23:11

Nirav Bhatt