xcode 8 打开xib 提示:indexing processing files,这时候xcode会假死,点击任何操作,半天才反应过来
1、禁用indexing
在终端(terminal) 输入 defaults write com.apple.dt.XCode IDEIndexDisable 1 并重启Xcode。
(还原命令: defaults write com.apple.dt.XCode IDEIndexDisable 0)
如果不还原indexing会造成:代码中类和方法等字体颜色不提示,xib文件关联失败,command+左键出现symbol not found。
2、xcode恢复出厂设置
defaults delete com.apple.dt.Xcode
3、clean 工程
4、进入~/Library/Developer/Xcode/DerivedData 这个文件夹,把里面相关工程的文件夹删掉。