2

Does anyone have any idea what the problem could be?

It constantly gets Not Responding.

Resources shouldn't be a problem (i7 2.2, 16 gb ram, SSD).

Xcode version: Version 6.0.1 (6A317)

I couldn't find any solution.

Eric Aya
  • 69,473
  • 35
  • 181
  • 253
grimdox
  • 92
  • 1
  • 9

2 Answers2

2

I had the exact same problem. To resolve this:

1. Close Xcode
2. Open Terminal
3. Type defaults delete com.apple.dt.Xcode
4. Re-open Xcode

Xcode is reset to its default settings - do NOT change appearance. It will never freeze again (at least mine hasn't). Hope this helps!

Valentin
  • 3,272
  • 1
  • 14
  • 22
1

Open a terminal and run the following command:

rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang/ModuleCache"

Look for the following file in ~/Library/Caches and delete it: com.apple.dt.Xcode

Back in your terminal, run the following commands:

rm -r Library/Developer/Xcode/DerivedData

rm -r Library/Developer/Xcode/xcuserdata

Chris Sharp
  • 2,005
  • 1
  • 18
  • 32
jamesphuket
  • 11
  • 1
  • 1