ios – 替换NSNull中嵌套NSDictionary中的事件

前端之家收集整理的这篇文章主要介绍了ios – 替换NSNull中嵌套NSDictionary中的事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个问题类似于 this question,但是这种方法只适用于字典的根级别.

我正在用空字符串替换任何NSNull值的发生,所以我可以将完整的字典保存到plist文件(如果我添加NSNull的文件将不会写入).

但是,我的字典里面有嵌套的字典.喜欢这个:

  1. "dictKeyName" = {
  2. innerStrKeyName = "This is a string in a dictionary";
  3. innerNullKeyName = "<null>";
  4. innerDictKeyName = {
  5. "innerDictStrKeyName" = "This is a string in a Dictionary in another Dictionary";
  6. "innerDictNullKeyName" = "<null>";
  7. };
  8. };

如果我使用:

  1. @interface NSDictionary (JRAdditions)
  2. - (NSDictionary *) dictionaryByReplacingNullsWithStrings;
  3. @end
  4.  
  5. @implementation NSDictionary (JRAdditions)
  6.  
  7. - (NSDictionary *) dictionaryByReplacingNullsWithStrings {
  8.  
  9. const NSMutableDictionary *replaced = [NSMutableDictionary dictionaryWithDictionary:self];
  10. const id nul = [NSNull null];
  11. const NSString *blank = @"";
  12.  
  13. for(NSString *key in replaced) {
  14. const id object = [self objectForKey:key];
  15. if(object == nul) {
  16. [replaced setObject:blank forKey:key];
  17. }
  18. }
  19. return [NSDictionary dictionaryWithDictionary:replaced];
  20. }
  21.  
  22. @end

我得到这样的东西:

  1. "dictKeyName" = {
  2. innerStrKeyName = "This is a string in a dictionary";
  3. innerNullKeyName = ""; <-- this value has changed
  4. innerDictKeyName = {
  5. "innerDictStrKeyName" = "This is a string in a Dictionary in another Dictionary";
  6. "innerDictNullKeyName" = "<null>"; <-- this value hasn't changed
  7. };
  8. };

有没有办法从所有字典中查找每个NSNull值,包括嵌套字典??

编辑:
数据正在从JSON Feed获取,因此我收到的数据是动态的(我不想每次更改Feed时都更新该应用).

解决方法

方法的一个小修改可以使其递归:
  1. @interface NSDictionary (JRAdditions)
  2. - (NSDictionary *) dictionaryByReplacingNullsWithStrings;
  3. @end
  4.  
  5. @implementation NSDictionary (JRAdditions)
  6.  
  7. - (NSDictionary *) dictionaryByReplacingNullsWithStrings {
  8. const NSMutableDictionary *replaced = [NSMutableDictionary dictionaryWithDictionary: self];
  9. const id nul = [NSNull null];
  10. const NSString *blank = @"";
  11.  
  12. for (NSString *key in self) {
  13. const id object = [self objectForKey: key];
  14. if (object == nul) {
  15. [replaced setObject: blank forKey: key];
  16. }
  17. else if ([object isKindOfClass: [NSDictionary class]]) {
  18. [replaced setObject: [(NSDictionary *) object dictionaryByReplacingNullsWithStrings] forKey: key];
  19. }
  20. }
  21. return [NSDictionary dictionaryWithDictionary: replaced];
  22. }

请注意,快速枚举现在是自己,而不是替换

上面的代码,这个例子:

  1. NSMutableDictionary *dic1 = [NSMutableDictionary dictionary];
  2. [dic1 setObject: @"string 1" forKey: @"key1.1"];
  3. [dic1 setObject: [NSNull null] forKey: @"key1.2"];
  4.  
  5. NSMutableDictionary *dic2 = [NSMutableDictionary dictionary];
  6. [dic2 setObject: @"string 2" forKey: @"key2.1"];
  7. [dic2 setObject: [NSNull null] forKey: @"key2.2"];
  8.  
  9. [dic1 setObject: dic2 forKey: @"key1.3"];
  10.  
  11. NSLog(@"%@",dic1);
  12. NSLog(@"%@",[dic1 dictionaryByReplacingNullsWithStrings]);

呈现此结果:

  1. 2012-09-01 08:30:16.210 Test[57731:c07] {
  2. "key1.1" = "string 1";
  3. "key1.2" = "<null>";
  4. "key1.3" = {
  5. "key2.1" = "string 2";
  6. "key2.2" = "<null>";
  7. };
  8. }
  9. 2012-09-01 08:30:16.212 Test[57731:c07] {
  10. "key1.1" = "string 1";
  11. "key1.2" = "";
  12. "key1.3" = {
  13. "key2.1" = "string 2";
  14. "key2.2" = "";
  15. };

猜你在找的iOS相关文章