Xcode Beta 6.1和Xcode 6 GM因为奇怪的原因而陷入索引

时间:2014-09-12 14:28:35

标签: xcode swift xcode6

我正在开发一个快速的应用程序,在某些时候我有一个类似于此的代码:

 import UIKit

class ViewController: UIViewController {
    private var a: UIImageView!
    private var b: UIImageView!
    private var c: UILabel!
    private var d: UILabel!
    private var e: UILabel!
    private var f: UILabel!
    private var g: UIView!
    private var h: UIView!
    private var i: UIView!
    private var j: UIView!
    private var k: UIImageView!
    private var l: UIView!
    private var m: UIView!
    private var n: UIView!
    private var o: UIView!
    private var p: UIScrollView!
    private var q: UIView!

    override func viewDidLoad() {
        super.viewDidLoad()

        let viewBindingsDict = ["a" : a,
            "b" : b,
            "c" : c,
            "d" : d,
            "e" : e,
            "f" : f,
            "g" : g,
            "h" : h,
            "i" : i,
            "j" : j,
            "k" : k,
            "l" : l,
            "m" : m,
            "n" : n,
            "o" : o,
            "p" : p]
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}

出于某种原因,当我添加此代码时,xcode会卡住,我无法执行任何其他操作。

打开活动监视器,它使用超过100%的CPU显示sourcekitservice和swift。

我已使用上面的代码创建了此示例项目:https://dl.dropboxusercontent.com/u/1393279/aaaaaaa.zip

我已经尝试过清理派生数据,重新安装Xcode,重新启动,等待几分钟等等。它只是无法正常工作。

2 个答案:

答案 0 :(得分:18)

类似的事情发生在我身上几次,我通过将长语句分成多行来解决它

我在游乐场测试了你的代码,我立即注意到SourceKitService进程占用了100%的CPU。

在你的代码中,我看到的最长的语句是字典初始化,所以第一种方法是使其变为可变,并且每行使用少量项目进行初始化。

Swift没有为词典提供+=运算符,因此我们首先需要一个(荣誉为@shucao):

func +=<K, V> (inout left: Dictionary<K, V>, right: Dictionary<K, V>) -> Dictionary<K, V> {
    for (k, v) in right {
        left.updateValue(v, forKey: k)
    }
    return left
}

在您的工具集中,您可以按如下方式初始化字典:

var viewBindingsDict = ["a" : a, "b" : b, "c" : c, "d" : d, "e" : e]
viewBindingsDict += ["f" : f, "g" : g, "h" : h, "i" : i, "j" : j]
viewBindingsDict += ["k" : k, "l" : l, "m" : m, "n" : n, "o" : o]
viewBindingsDict += ["p" : p]

每行最多选择5个项目。

但是在你的代码中你将字典声明为不可变 - swift没有提供任何语句来在声明后初始化一个不可变的东西 - 幸运的是我们可以使用一个闭包来实现它:

let viewBindingsDict = { () -> [String:UIView] in
    var bindings = ["a" : self.a, "b" : self.b, "c" : self.c, "d" : self.d, "e": self.e]
    bindings += ["f": self.f, "g" : self.g, "h" : self.h, "i" : self.i, "j" : self.j]
    bindings += ["k" : self.k, "l" : self.l, "m" : self.m, "n" : self.n,  "o" : self.o]
    bindings += ["p": self.p]
    return bindings
}()

答案 1 :(得分:2)

我遇到了同样的问题。删除预编译的头文件和派生数据似乎解决了这个问题。我不确定这是否会永久修复它,但至少它现在正在起作用。