Error compiling storyboard files using Xcode 6 beta 5

My application worked perfectly in Xcode 6 Beta 4. Today I upgraded to Beta 5 and ran into two errors:

The file "Storyboard_iPad-SBPartialInfo.plist" cannot be opened because there is no such file.

The command / Applications / Xcode6-Beta5.app / Contents / Developer / Platforms / iPhoneSimulator.platform / Developer / usr / bin / ibtool failed with exit code 255

What is SBPartialInfo.plist? I could not find it through the spotlight. My storyboard files are storyboard_iphone and storyboard_ipad

+8
ios xcode ios8 xcode6 uistoryboard
source share
4 answers

After upgrading to Beta5, I also experienced the following error:

Command /Applications/Xcode6-Beta5.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/ibtool failed with exit code 255

As it often happens, shutting down and reopening Xcode seems to fix the problem.

+2
source share

try unchecking "Use automatic layout" if it is checked

+1
source share

I don't know if this will help, but I had the same last error (with error code 255). What I did was run the simulator with iOS7 (which worked fine for me). Then, when I was there, I reset the simulator, cleared and worked with iOS8. Thus, you can try to reset the simulator, clean, and then build. After completing the above project, my project worked great on iOS8.

0
source share

Xcode has a problem composing storyboards, but the error is not particularly useful.

I have seen this on several occasions, but most often because of a Popover Segue with a missing or illegal anchor, such as a UITableViewCell or an element in the contents of cellView.

So check out all the recently added Segues.

0
source share

All Articles