iphone - 使用 TouchJson 序列化字典的问题
<p><p>我正在为 ipad 开发一个小应用程序,我正在尝试将字典序列化为 NSData 以保存在磁盘中。我正在使用框架 TouchJson。
以及我的示例结构示例:</p>
<pre><code>{
line = {
78986928 = (
"NSPoint: {442, 266}",
(...)
"NSPoint: {370, 634}"
);
};
</code></pre>
<p>}</p>
<p>我的字典的结构是:一个里面有字典的字典。这个字典有一个字符串 (ID) 和一个带有 NSValue 的 NSMutableArray。</p>
<p>我正在使用的代码行是:</p>
<p><code>NSData *jsonData = [ serializeObject:templates error:&error];</code></p>
<p>变量error给我的错误是:</p>
<pre><code>2011-03-23 10:12:12.957 GestureFramework 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}"
);
};
}'}
</code></pre>
<p>提前谢谢</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>TouchJSON 支持序列化以下类型:</p>
<ul>
<li>NSNull</li>
<li>NSNumber</li>
<li>NSString</li>
<li>NSArray</li>
<li>NSDictionary</li>
<li>NSData</li>
</ul>
<p>如果您想序列化另一种类型,您需要实现 <code>-(NSData*)JSONDataRepresentation</code>(在子类或类别上)。</p>
<p>这是我用于 <code>NSDate</code> 的示例:</p>
<pre><code>@interface NSDate (JSONDataRepresentation)
- (NSData*)JSONDataRepresentation;
@end
</code></pre>
<p>.</p>
<pre><code>@implementation NSDate (JSONDataRepresentation)
- (NSData*)JSONDataRepresentation
{
return [@"\"didn't want to waste the space to do the real conversion\"" dataUsingEncoding: NSUTF8StringEncoding];
}
@end
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 使用 TouchJson 序列化字典的问题,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/5403754/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/5403754/
</a>
</p>
页:
[1]