更新插件
为什么升级 XCode 之后,插件就失效了
每个版本的 Xcode 都由一个 UUID插件如果要想在 Xcode 上运行,必须指定支持的 UUID手动修改
把读取到 Xcode 的 UUID 添加到所有插件设置中
//在终端中输入
find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add `defaults read /Applications/Xcode.app/Contents/Info.plist DVTPlugInCompatibilityUUID`
说明:
查找安装插件的 Info.plist 文件
find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist
向前一步命令结果的 info.plist 中写入数据,向 DVTPlugInCompatibilityUUIDs 数组添加数据
xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add
从 Xcode.app 中读取 UUID,如果 Xcode 保存为其他文件名,需要自行修改
defaults read /Applications/Xcode.app/Contents/Info.plist DVTPlugInCompatibilityUUID
网友评论