NSData到Custom NSObject

时间:2013-02-24 06:37:55

标签: ios objective-c nsdata nsobject

我正在尝试使用蓝牙在2台设备之间传输数据。 设备A持有自定义NSObject。 设备B将此自定义NSObject作为NSData接收。

将收到的NSData解码为自定义NSObject的最佳方法是什么?

谢谢!

1 个答案:

答案 0 :(得分:10)

您必须实现自定义对象的encodeWithCoder:initWithCoder:方法,以便它知道如何对NSData对象进行编码和解码:

- (void)encodeWithCoder:(NSCoder *)coder{
    [coder encodeObject:self.property forKey:@"property"];
    // all other properties
}

- (id)initWithCoder:(NSCoder *)decoder {
    if (self = [super init]) {
        self.property = [decoder decodeObjectForKey:@"property"];
        // all other properties
    }
    return self;
}

然后使用以下方法将其从NSData解码为NSObject:

NSObject *object = [NSKeyedUnarchiver unarchiveObjectWithData:data];

相反:

[NSKeyedArchiver archiveRootObject:object toFile:self.filePath];