最近更新Xcode7后,之前安装的VVDocumenter居然无法添加注释功能,于是论坛各种搜索,找到相应的解决方法。


由于后面操作需要用到Mac OS的隐藏文件,首先Mac下显示隐藏文件的方法;

1、终端输入以下命令:

defaults write com.apple.finder AppleShowAllFiles -bool true

然后重完成后要重启Finder,输入

     killall Finder   就可以看到系统中所有的隐藏文件(界面操作:鼠标单击窗口左上角的苹果标志-->强制退出-->Finder-->重新启动)

     如果要改回不显示隐藏文件,把后面的true改成false

defaults write com.apple.finder AppleShowAllFiles -bool false

      然后重启Finder


2、查看Xcode的UUID

     方式一:终端输入

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

把UUID拷贝出来


     方式二:

在/Applications目录中找到Xcode.app,右键"显示包内容",进入Contents文件夹,双击Info.plist打开,找到DVTPlugInCompatibilityUUID,拷贝后面的字符串。


3、添加Xcode的UUID到VVDocumenter-Xcode的Info.plist文件

   方式一:插件已经安装完成

   (1)打开Xcode插件所在目录:~/Library/Application Support/Developer/Shared/Xcode/Plug-ins;


   方式二:插件还未安装/重新安装


4、重启Xcode

     Xcode6之后,重启Xcode时会提示"Load bundle"、"Skip Bundle",这里必须选择"Load bundle",不然插件无法使用。