Xcode失败,退出码254

我寻找一个解决方案,但我什么也没找到。 通过XCode 6的测试版3,我的代码不再工作。 Xcode返回给我这个错误:

在/Users/Marco/Desktop/iPrescription/iPrescription/MedicineTableViewController.swift:109:14:0处发射SIL for'tableView'错误:无法执行命令:分段错误:11:0:错误:swift frontend命令失败发信号(使用-v查看调用)Command /Applications/Xcode6-Beta3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift失败,退出代码为254

我是新来的ios编程,我不知道该怎么做才能找到这个问题的根源。 我很沮丧,因为我不知道在找什么。


对我来说同样的问题,但在我的情况下集合视图。 我发现它是由线引起的:

let cell = collectionView?.dequeueReusableCellWithReuseIdentifier(reuseIdentifier, forIndexPath: indexPath) as CustomCell

我只是将它改为:

let cell = collectionView!.dequeueReusableCellWithReuseIdentifier(reuseIdentifier, forIndexPath: indexPath) as CustomCell

和我的应用程序又恢复了生机。 仍然不知道为什么。

更新:

只是注意到方法签名在beta3中被更改,而collectionView(在您的情况下为tableView)被迫解开:

override func collectionView(collectionView: UICollectionView**!**, cellForItemAtIndexPath indexPath: NSIndexPath!) -> UICollectionViewCell!

所以我们需要修复数据源方法并直接使用collectionView或tableView。

链接地址: http://www.djcxy.com/p/21463.html

上一篇: Xcode failed with exit code 254

下一篇: running a green screen video in another video