解决Xcode7.1插件安装的办法

现象一、 运行安装后,没有出现在菜单上。

1. 到githup上下载Alcatraz project https://github.com/supermarin/Alcatraz
2. 打开终端

3. 输入

  defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID    回车

4. 得到当前的UUID

5. 打开下载的Alcatraz project

6. 在这个工程的infos设置里添加

 

7. 把刚刚得到的UUID加入

8. run

9. 重启XCode/或者稍等

10. 你会看到一个提示框 a load bundle or skip.. 选择 load bundle.

 

现象二、看到提示

如果你选择了skip Bundles,那么你就算重新安装也不会看到了。

这是因为 XCode里面的黑名单机制

 

打开终端

  输入:

1 defaults delete com.apple.dt.Xcode DVTPlugInManagerNonApplePlugIns-Xcode-7.1

再重启XCode,

 

这次看到上面的提示再选择Load Bundles

就可以了。

 

 

 

原文地址:https://www.cnblogs.com/shaoting/p/4920165.html