Alcatraz Xcode6.4安装不了呢,如何解决

Alcatraz Xcode6.4安装不了呢,如何解决   

 
 
装上6.4,Window PackageManager就没有了

 
 

 
级别: 新手上路
 
UID: 230124
精华: 
发帖: 16
可可豆: 25 CB
威望: 26 点
在线时间: 28(时)
注册时间: 2013-06-28
最后登录: 2015-07-13
 
沙发 :发表于: 2015-07-08 16:09   发自: Web Page
 
 
 
 


Not sure if its the case for you guys, but apparently after upgrading to 6.4 it asks if you want to load bundles again. I clicked skip without looking and that was blocking alcatraz from showing up in Window -> Package Manager. Long story short run this:

defaults read com.apple.dt.Xcode DVTPlugInManagerNonApplePlugIns-Xcode-6.4

to see if Alcatraz is on the skipped list:

{
    allowed =     {
        "io.realm.RealmPlugin" =         {
            version = 1;
        };
    };
    skipped =     {
        "com.mneorr.Alcatraz" =         {
            version = 1;
        };
        "io.github.FuzzyAutocomplete" =         {
            version = "2.1.0";
        };
    };
}

If it is you can run:
终端输入以下代码即可解决
defaults delete com.apple.dt.Xcode DVTPlugInManagerNonApplePlugIns-Xcode-6.4

and the next time you open xcode it should prompt to load bundles again. Hopefully this helps someone. Original instructions found here
posted @ 2015-07-14 10:31  784692237  阅读(272)  评论(0)    收藏  举报