mm24
mm24

Reputation: 9596

XCode 7 crashes when clicking on storyboard and solution by Apple engineers in dev forum does not work

I got XCode 7 beta 2 installed and I do the following steps:

There is a similar discussion on the apple developer forum but the solution suggested by the Apple engineers does not work.

Anyone had better luck?


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

enter image description here

Upvotes: 3

Views: 1134

Answers (2)

Ramis
Ramis

Reputation: 16639

In my case storyboards was causing crashing because it was:

propertyAccessControl="nonLocalizable"

and should hould be:

propertyAccessControl="none"

Second line in storyboard.

Upvotes: 0

grahamcracker1234
grahamcracker1234

Reputation: 611

Well what I would suggest is updating OS X Yosemite. After you do that close all applications (including safari) except Xcode beta. Once opened try click the app's main file (at top) when on that ctrl click on the storyboard:

"Open" > "Source Code"

Then simply change one line of code. Then undo it, but NOT with command z or going to:

"Edit" > "Undo"

Just rewrite that line of code. After rewriting that line of code go back to the app's main file. Then ctrl click on the storyboard:

"Open" > "Interface Builder – Storyboard"

That should work if not please be specific in when it first crashed when you did this. And if there is anything at all in the storyboard, please tell me. I hope this worked.

Upvotes: 3

Related Questions