web-dev-qa-db-ja.com

認識されないセレクターを取得しました-replacementObjectForKeyedArchiver:NSCodingをSwift

NSCodingに準拠するSwiftクラスを作成しました。(Xcode 6 GM、Swift 1.0)

_import Foundation

private var nextNonce = 1000

class Command: NSCoding {

    let nonce: Int
    let string: String!

    init(string: String) {
        self.nonce = nextNonce++
        self.string = string
    }

    required init(coder aDecoder: NSCoder) {
        nonce = aDecoder.decodeIntegerForKey("nonce")
        string = aDecoder.decodeObjectForKey("string") as String
    }

    func encodeWithCoder(aCoder: NSCoder) {
        aCoder.encodeInteger(nonce, forKey: "nonce")
        aCoder.encodeObject(string, forKey: "string")
    }
}
_

しかし、私が電話するとき...

let data = NSKeyedArchiver.archivedDataWithRootObject(cmd);

クラッシュすると、このエラーが発生します。

_2014-09-12 16:30:00.463 MyApp[30078:60b] *** NSForwarding: warning: object 0x7a04ac70 of class '_TtC8MyApp7Command' does not implement methodSignatureForSelector: -- trouble ahead
Unrecognized selector -[MyApp.Command replacementObjectForKeyedArchiver:]
_

私は何をすべきか?

66
Hlung

Swiftクラスは継承なしで動作しますが、NSCodingを使用するには、NSObjectから継承する必要があります。

class Command: NSObject, NSCoding {
    ...
}

コンパイラーのエラーはあまり有益ではありません:(

208
Hlung