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

     
     
  • 相关阅读:
    kotlin实现流读取
    mongo注解详解
    spring 手动注册bean
    mongo 生命周期
    GC类型以及不同类型GC的搭配 1
    GC类型以及不同类型GC的搭配
    Kotlin的高阶函数和常用高阶函数
    通过JVM日志来进行安全点分析
    js中style.display=""无效的解决方法
    Web网页性能管理详解
  • 原文地址:https://www.cnblogs.com/levy/p/4674500.html
Copyright © 2011-2022 走看看