zoukankan      html  css  js  c++  java
  • xcode 6.4 安装Alcatraz失败解决方法

    Alcatraz Xcode6.4安装不了解决方法http://www.cocoachina.com/bbs/read.php?tid=310380

    版权声明:本文为博主原创文章,未经博主允许不得转载。

    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

     
     
  • 相关阅读:
    Python time gmtime()方法
    背包DP整理
    hdu 1561 The more, The Better
    Eclipse无法打开提示could not open jvm.cfg错误
    Http协议
    反射类
    xml——dom&sax解析、DTD&schema约束
    XML、DTD约束
    java——final、权限修饰符
    java——接口、多态性、对象转型
  • 原文地址:https://www.cnblogs.com/levy/p/4674500.html
Copyright © 2011-2022 走看看