Xcode:swiftc失败,退出代码为1

时间:2016-03-23 13:25:11

标签: ios swift2 xcode7

我有这个功能的问题:

func isSmallDevice() -> Bool {
    if UIDevice().userInterfaceIdiom == .Phone {
        if UIScreen.mainScreen().nativeBounds.height <= 1136 {
            return true
        }
    }
    return false
}

基本上,如果我评论这些行,则构建将成功,如果不成功,它将失败并出现以下错误:

命令/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc因退出代码1而失败

没有显示其他错误或警告,请注意我没有调用此功能。我也试过退出Xcode,删除派生数据和清理项目。

0 个答案:

没有答案