Why NSUserDefaults failed to save NSMutableDictionary in iOS?(为什么 NSUserDefaults 无法在 iOS 中保存 NSMutableDictionary?)
问题描述
我想在 NSUserDefaults
中保存一个 NSMutableDictionary
对象.NSMutableDictionary
中的键类型是 NSString
,值类型是 NSArray
,其中包含实现 NSCoding
.每个文档,NSString
和 NSArray
都符合 NSCoding
.
I'd like to save an NSMutableDictionary
object in NSUserDefaults
. The key type in NSMutableDictionary
is NSString
, the value type is NSArray
, which contains a list of object which implements NSCoding
. Per document, NSString
and NSArray
both are conform to NSCoding
.
我收到此错误:
[NSUserDefaults setObject: forKey:]: 尝试插入 NSCFDictionary 类的非属性值.....
[NSUserDefaults setObject: forKey:]: Attempt to insert non-property value.... of class NSCFDictionary.
推荐答案
我找到了一种替代方法,在保存之前,我使用 NSKeyedArchiver
NSArray 对象)进行编码>,以 NSData
结尾.然后使用 UserDefaults 保存 NSData
.
I found out one alternative, before save, I encode the root object (NSArray
object) using NSKeyedArchiver
, which ends with NSData
. Then use UserDefaults save the NSData
.
当我需要数据时,我读出NSData
,并使用NSKeyedUnarchiver
将NSData
转换回对象.
When I need the data, I read out the NSData
, and use NSKeyedUnarchiver
to convert NSData
back to the object.
这有点麻烦,因为我每次都需要与 NSData
进行转换,但它确实有效.
It is a little cumbersome, because i need to convert to/from NSData
everytime, but it just works.
以下是每个请求的一个示例:
Here is one example per request:
保存:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSMutableArray *arr = ... ; // set value
NSData *data = [NSKeyedArchiver archivedDataWithRootObject:arr];
[defaults setObject:data forKey:@"theKey"];
[defaults synchronize];
加载:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSData *data = [defaults objectForKey:@"theKey"];
NSArray *arr = [NSKeyedUnarchiver unarchiveObjectWithData:data];
数组中的元素实现
@interface CommentItem : NSObject<NSCoding> {
NSString *value;
}
然后在CommentItem
的实现中,提供了两个方法:
Then in the implementation of CommentItem
, provides two methods:
-(void)encodeWithCoder:(NSCoder *)encoder
{
[encoder encodeObject:value forKey:@"Value"];
}
-(id)initWithCoder:(NSCoder *)decoder
{
self.value = [decoder decodeObjectForKey:@"Value"];
return self;
}
谁有更好的解决方案?
谢谢大家.
这篇关于为什么 NSUserDefaults 无法在 iOS 中保存 NSMutableDictionary?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 NSUserDefaults 无法在 iOS 中保存 NSMutableDictionary?
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01