美文网首页IOS技术精华
Xcode 8 下使用Alcatraz的可行性

Xcode 8 下使用Alcatraz的可行性

作者: 逆行风 | 来源:发表于2016-12-21 10:54 被阅读10次

转载

本文要说的是Xcode 8下使用Alcatraz的可能性。我在搜索Xcode 8 下如何使用 Alcatraz 时,搜到了下面一个方案。

具体步骤如下:

https://github.com/steakknife/unsign下载unsign工具,使用 make 编译unsign,得到可执行文件unsign

git clone https://github.com/steakknife/unsign.git

cd unsign

make

然后使用unsign为xcode移除签名。

./unsign /Applications/Xcode.app/Contents/MacOS/Xcode

会在/Applications/Xcode.app/Contents/MacOS/下生成Xcode.unsigned,备份好原始的Xcode,把Xcode.unsigned重命名为Xcode,重启Xcode。你就会发现Xcode提醒你是否加载Alcatraz的Bundle。

然后运行以下命令

find~/Library/Application/Support/Developer/Shared/Xcode/Plug-ins-nameInfo.plist-maxdepth3|xargs-I{}defaults write{}DVTPlugInCompatibilityUUIDs-array-add`defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID`

重启Xcode即可。我装了两个插件 Uncrustify 和Auto-Importer,目前来说是可用的。

注意

这种方法可能会导致Xcode不稳定,所以还是谨慎使用。

相关文章

网友评论

    本文标题:Xcode 8 下使用Alcatraz的可行性

    本文链接:https://www.haomeiwen.com/subject/sqhqvttx.html