我正在为ipad开发一个小应用程序,我正在尝试将字典序列化为NSData以保存在磁盘中。我正在使用框架TouchJson。 我的示例结构的示例:
{
line = {
78986928 = (
"NSPoint: {442, 266}",
(...)
"NSPoint: {370, 634}"
);
};
}
我的字典结构是:里面有字典的字典。这个词典有一个字符串(ID)和一个带有NSValue的NSMutableArray。
我正在使用的代码行是:
NSData *jsonData = [[CJSONSerializer serializer] serializeObject:templates error:&error];
变量错误给我的错误是:
2011-03-23 10:12:12.957 GestureFramework[286:207] Error Domain=TODO_DOMAIN Code=-1 "Could not serialize object '{
line = {
78986928 = (
"NSPoint: {442, 266}",
(...)
"NSPoint: {370, 634}"
);
};
}'" UserInfo=0x4e27aa0 {NSLocalizedDescription=Could not serialize object '{
line = {
78986928 = (
"NSPoint: {442, 266}",
(...)
"NSPoint: {370, 634}"
);
};
}'}
Thnx提前
答案 0 :(得分:4)
TouchJSON支持序列化以下类型:
如果你想序列化另一种类型,你需要实现-(NSData*)JSONDataRepresentation
(在子类或类别上)。
以下是我用于NSDate
的示例:
@interface NSDate (JSONDataRepresentation)
- (NSData*)JSONDataRepresentation;
@end
@implementation NSDate (JSONDataRepresentation)
- (NSData*)JSONDataRepresentation
{
return [@"\"didn't want to waste the space to do the real conversion\"" dataUsingEncoding: NSUTF8StringEncoding];
}
@end