김승수
김승수

Reputation: 171

Xcode 6 stops working

I'm using the latest version of Xcode 6.

When I click "images.xcassets" folder Xcode stops.

I've reinstalled my Xcode but Xcode still freezes.

What should I do?

Upvotes: 0

Views: 41

Answers (1)

DarkDust
DarkDust

Reputation: 92384

Xcode 6.1.1 is pretty buggy (especially if you're using tabs) and actually we can only hope for Apple to release a bugfix version soon. But one thing that often helps is deleting the user data (UI state):

  • Close Xcode.
  • In your MyProject.xcodeproj or MyProject.xcworkspace directory, delete the xcuserdata directory.
    • In Finder, you'll need to right-click on the project or workspace directory and select "Show Package Contents".
  • Open Xcode again.

Upvotes: 1

Related Questions