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

     
     
  • 相关阅读:
    Unity SceneManager 对场景的操作
    Unity [Tooltip("")]
    Unity WWW下载图片并保存到Unity的Assets下
    C# 集合
    C# 枚举与switch用法
    C# String.Format方法
    C# Thread类 线程优先级
    Unity Gizmos可视化辅助工具
    anacanda
    异常和错误
  • 原文地址:https://www.cnblogs.com/levy/p/4674500.html
Copyright © 2011-2022 走看看