Xcode 7 crash when clicking on storyboard and solution by Apple engineers in developer forum not working

I installed XCode 7 beta and followed these steps:

  • create a new Xcode project (single view app)
  • add tracking target to project
  • select any .storyboard file

There is a similar discussion on the Apple Developers Forum, but the solution suggested by Apple engineers does not keep it working.

Someone more fortunate?


This is the Mac OS version and hardware spec I got:

enter image description here

+3


source to share


2 answers


Well what I suggest is OS X Yosemite update. After that, close all applications (including safari) except Xcode beta. Once opened, try clicking on the main application file (top) when on that ctrl click on the storyboard:

"Open"> "Source Code"

Then just change one line of code. Then cancel it, but NOT with the z command, or go to:

Modify> Undo



Just rewrite this line of code. After rewriting this line of code, go back to the main application file. Then press ctrl on the storyboard:

Open> Interface Builder - Storyboard

This should work, if not be specific, when it crashed first, when you did. And if there is anything in the storyboard , please tell me. Hope it worked.

+3


source


In my case, the storyboards were causing the crash because it was:

propertyAccessControl = "non-localizable"

and should be:



propertyAccessControl = "no"

The second line in the storyboard.

0


source







All Articles