Xcode快速註釋外掛無法使用
阿新 • • 發佈:2019-02-13
借鑑的文章: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,儲存。