5

无法存档

我的应用程序在模拟器和多个设备上运行良好(Xcode 6.3.2,基于 swift)。但是当我尝试归档它时,我得到了错误Command failed due to signal: Segmentation fault: 11

其他人面临同样的问题

运行 Swift 应用程序时出现分段错误 11

“由于信号而导致命令失败:分段错误:11” - 有什么问题?

由于信号,命令失败:分段错误:11

根本原因?

但似乎每个人都有不同的原因导致错误..我无法理解我收到的错误消息。发布在下面,任何提示或提示将不胜感激!

错误日志

0  swift                    0x0000000108e5d2b8 llvm::sys::PrintStackTrace(__sFILE*) + 40
1  swift                    0x0000000108e5d794 SignalHandler(int) + 452
2  libsystem_platform.dylib 0x00007fff8897bf1a _sigtramp + 26
3  libsystem_platform.dylib 0x00007fff574b7b28 _sigtramp + 3467885608
4  swift                    0x0000000108a053f2 swift::serialization::Serializer::writeCrossReference(swift::Decl const*) + 578
5  swift                    0x0000000108a0e275 swift::serialization::Serializer::writeAllDeclsAndTypes() + 2181
6  swift                    0x0000000108a0f2f8 swift::serialization::Serializer::writeAST(llvm::PointerUnion<swift::Module*, swift::SourceFile*>) + 2600
7  swift                    0x0000000108a11960 swift::serialization::Serializer::writeToStream(llvm::raw_ostream&, llvm::PointerUnion<swift::Module*, swift::SourceFile*>, swift::SILModule const*, swift::SerializationOptions const&) + 144
8  swift                    0x0000000108a12521 swift::serialize(llvm::PointerUnion<swift::Module*, swift::SourceFile*>, swift::SerializationOptions const&, swift::SILModule const*) + 321
9  swift                    0x0000000108746c1a frontend_main(llvm::ArrayRef<char const*>, char const*, void*) + 5514
10 swift                    0x00000001087454e6 main + 1814
11 libdyld.dylib            0x00007fff8db235c9 start + 1
12 libdyld.dylib            0x0000000000000080 start + 1917700792
4

2 回答 2

4

解决了。问题是两件事:1)转换为双精度 2)处理一个空数组

转换为双

从更改var lat: Double? = d["lat"].doubleValuevar lat: Double? = Double(d["lat"].doubleValue)

处理空数组

从改变

let brands = d["brands_unfiltered"].arrayValue {
if brands == [] {
    // Do nothing (empty)
}
else{
    // Do stuff
}

if let brands = d["brands_unfiltered"].arrayValue as Array! {
     // Do stuff
}

为了找到根本原因,我停用了大部分代码,直到我发现归档不起作用的原因。此后,解决方案非常简单。希望这可以帮助其他人在同样的错误中挣扎。

于 2015-06-29T09:43:42.157 回答
0

我找到了导致我的“存档”操作失败并出现此错误“命令因信号而失败:分段错误:11”的代码

当我在 cellForRowAtIndexPath 函数中使用 indexPath 时,我需要放置一个感叹号(即 indexPath! 而不是 indexPath)。但是,如果我省略了感叹号,为什么会出现这样的错误,我仍然感到困惑。有谁知道原因?

    override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!, object: PFObject!) -> PFTableViewCell! {

            // code to get cell, etc

            let thumbnailImage = self.userPhotos?.getFromCacheOrDownload(username,
                circle: team.circle(), delegate: self, indexPath: indexPath!)
            cell.userPhotoImageView.image = thumbnailImage

            return cell
}
于 2015-09-25T11:59:39.030 回答