1. 程式人生 > >Xcode快速註釋外掛無法使用

Xcode快速註釋外掛無法使用

借鑑的文章:http://blog.csdn.net/hengshujiyi/article/details/47123407

我使用的xcode快速外掛是:VVDocumenter 

無法使用的背景原因:之前xcode是可以的,但是升級xcode之後就不能使用了。

1、檢視Xcode的UUID。

如何檢視,我們可以開啟終端,並輸入:

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

點選enter,就能獲取到一串UUID碼:

如下圖藍底顯示:


2、將UUID錄入到xcode  Info.plist檔案中

在/Applications目錄中找到Xcode.app,右鍵”顯示包內容”,進入Contents資料夾,雙擊Info.plist開啟,找到DVTPlugInCompatibilityUUID,拷貝後面的字串。

如果第一種方案失敗,那麼使用第二種方案試試:

第二種方案,操作VVDocumenter

二、新增Xcode的UUID到VVDocumenter-Xcode的Info.plist檔案 方式1--外掛已經安裝完成 1、開啟xcode外掛所在的目錄:~/Library/Application Support/Developer/Shared/Xcode/Plug-ins; 2、選擇已經安裝的外掛例如VVDocumenter-Xcode,右鍵”顯示包內容”; 3、找到info.plist 檔案,找到DVTPlugInCompatibilityUUIDs的專案,新增一個Item,Value的值為之前Xcode的UUID,儲存。 技術分享
方式2--外掛還未安裝/重新安裝 1、在Xcode中開啟專案,選擇專案名稱,在TAGETS下選中VVDocumenter-Xcode; 2、選擇Info,找到DVTPlugInCompatibilityUUIDs的專案,新增一個Item,Value的值為之前Xcode的UUID; 3、Build專案,VVDocumenter-Xcode會自動安裝。 三、退出並重啟Xcode Xcode 6之後,重啟Xcode時會提示“Load bundle”、 “Skip Bundle”,這裡必須選擇“Load bundle”,不然外掛無法使用。