4
我在編寫名爲Packet的對象時通過以下代碼並通過Multipeer連接發送到另一端。但是,每當它嘗試解碼編碼對象時,我都會收到以下錯誤。swift:nscoding decodeObject始終爲零
class Packet : NSObject, NSCoding {
var tmp1: Double = 0
var tmp2: Double = 0
struct PropertyKey {
static let tmp1Key = "tmp1Key"
static let tmp2Key = "tmp2Key"
}
init(tmp1: Double, tmp2: Double) {
self.tmp1 = tmp1
self.tmp2 = tmp2
super.init()
}
deinit {
}
required convenience init(coder aDecoder: NSCoder) {
debugPrint("initcoder")
let tmp1 = aDecoder.decodeObject(forKey: PropertyKey.tmp1Key) as! Double // crash here
let tmp2 = aDecoder.decodeObject(forKey: PropertyKey.tmp2Key) as! Double
self.init(tmp1: tmp1, tmp2: tmp2)
}
public func encode(with aCoder: NSCoder) {
debugPrint("encodeCoder")
aCoder.encode(tmp1, forKey: PropertyKey.tmp1Key)
aCoder.encode(tmp2, forKey: PropertyKey.tmp2Key)
}
}
我得到的錯誤是 ----從我打印出----「initcoder」 致命錯誤:意外發現零而展開的可選值 2016年9月30日13:32: 55.901189連接[323:33022]致命錯誤:意外發現零,同時展開一個可選值
但是當我構造對象時,所有的值都被設置。 我簽約了一個沒有問題的數據包對象。
----附加信息------ 我用下面的代碼編碼,並且當通過乘法器連接發送到另一側進行解碼的數據。
func dataForPacket(packet: Packet) -> Data {
let data = NSMutableData()
let archiver = NSKeyedArchiver(forWritingWith: data)
archiver.encode(packet, forKey: "Packet")
archiver.finishEncoding()
debugPrint("dataForPacket \(data) \(packet)")
return data as Data
}
func packetForData(_ data: Data) -> Packet {
debugPrint("packetForData")
let unarchiver = NSKeyedUnarchiver(forReadingWith: data)
let packet: Packet = unarchiver.decodeObject(forKey: "Packet") as! Packet
// crash here (as this will call the init of the Packet class)
debugPrint("packetForData \(packet)")
return packet
}
我想知道什麼會導致錯誤。謝謝。
您需要使用decodeDouble關鍵 –
'讓TMP1 = aDecoder.decodeDouble(forKey:PropertyKey.tmp1Key)' –
由於上述意見提到,你必須使用特定的整數解碼,浮球,布爾,雙打等。 – mn1