web-dev-qa-db-fra.com

Sélecteur non reconnu -replacementObjectForKeyedArchiver: crash lors de l'implémentation de NSCoding dans Swift

J'ai créé une classe Swift conforme au NSCoding. (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")
    }
}

Mais quand j'appelle ...

let data = NSKeyedArchiver.archivedDataWithRootObject(cmd);

Il se bloque me donne cette erreur.

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:]

Que devrais-je faire?

66
Hlung

Bien que Swift fonctionne sans héritage, mais pour utiliser NSCoding vous devez hériter de NSObject.

class Command: NSObject, NSCoding {
    ...
}

Dommage que l'erreur du compilateur ne soit pas très informative :(

208
Hlung