20

我觉得这是个愚蠢的问题,但我还是会问...

我有一个NSDictionary对象集合,其键/值对对应于我创建的自定义类,称之为MyClass。有没有一种简单或“最佳实践”的方法可以让我基本上做一些类似MyClass * instance = [地图NSDictionary属性的事情MyClass ];NSCoding我有一种感觉,我需要用or做点什么NSKeyedUnarchiver,但与其自己跌跌撞撞,我认为那里的某个人可能能够为我指明正确的方向。

4

5 回答 5

27

-setValuesForKeysWithDictionary: 方法以及 -dictionaryWithValuesForKeys: 是您想要使用的。

例子:

// In your custom class
+ (id)customClassWithProperties:(NSDictionary *)properties {
   return [[[self alloc] initWithProperties:properties] autorelease];
}

- (id)initWithProperties:(NSDictionary *)properties {
   if (self = [self init]) {
      [self setValuesForKeysWithDictionary:properties];
   }
   return self;
}

// ...and to easily derive the dictionary
NSDictionary *properties = [anObject dictionaryWithValuesForKeys:[anObject allKeys]];
于 2009-05-06T18:40:45.947 回答
6

NSObject上没有allKeys。您需要在 NSObject 上创建一个额外的类别,如下所示:

NSObject+PropertyArray.h

@interface NSObject (PropertyArray)
- (NSArray *) allKeys;
@end

NSObject+PropertyArray.m

#import <objc/runtime.h>

@implementation NSObject (PropertyArray)
- (NSArray *) allKeys {
    Class clazz = [self class];
    u_int count;

    objc_property_t* properties = class_copyPropertyList(clazz, &count);
    NSMutableArray* propertyArray = [NSMutableArray arrayWithCapacity:count];
    for (int i = 0; i < count ; i++) {
        const char* propertyName = property_getName(properties[i]);
        [propertyArray addObject:[NSString  stringWithCString:propertyName encoding:NSUTF8StringEncoding]];
    }
    free(properties);

   return [NSArray arrayWithArray:propertyArray];
}
@end

例子:

#import "NSObject+PropertyArray.h"

...

MyObject *obj = [[MyObject alloc] init];
obj.a = @"Hello A";  //setting some values to attributes
obj.b = @"Hello B";

//dictionaryWithValuesForKeys requires keys in NSArray. You can now
//construct such NSArray using `allKeys` from NSObject(PropertyArray) category
NSDictionary *objDict = [obj dictionaryWithValuesForKeys:[obj allKeys]];

//Resurrect MyObject from NSDictionary using setValuesForKeysWithDictionary
MyObject *objResur = [[MyObject alloc] init];
[objResur setValuesForKeysWithDictionary:objDict];
于 2011-10-19T06:44:06.750 回答
3

假设您的类符合键值编码协议,您可以使用以下内容:(为方便起见,在 NSDictionary 上定义为类别):

// myNSDictionaryCategory.h:
@interface NSDictionary (myCategory)
- (void)mapPropertiesToObject:(id)instance
@end


// myNSDictionaryCategory.m:
- (void)mapPropertiesToObject:(id)instance
{
    for (NSString * propertyKey in [self allKeys])
    {
        [instance setValue:[self objectForKey:propertyKey]
                    forKey:propertyKey];
    }
}

以下是您将如何使用它:

#import "myNSDictionaryCategory.h"
//...
[someDictionary mapPropertiesToObject:someObject];
于 2009-05-06T17:23:13.777 回答
0

如果你做这种事情的机会是你处理 JSON,你可能应该看看 Mantle https://github.com/Mantle/Mantle

然后你会得到一个方便的方法dictionaryValue

[anObject dictionaryValue];
于 2014-12-01T23:17:11.577 回答
0

只需为 NSObject 添加类别即可从您的自定义对象中获取 dictionaryRepresentation(在我的情况下,仅在 JSON 序列化中使用):

//  NSObject+JSONSerialize.h
#import <Foundation/Foundation.h>

@interface NSObject(JSONSerialize)

- (NSDictionary *)dictionaryRepresentation;

@end

//  NSObject+JSONSerialize.m
#import "NSObject+JSONSerialize.h"
#import <objc/runtime.h>

@implementation NSObject(JSONSerialize)

+ (instancetype)instanceWithDictionary:(NSDictionary *)aDictionary {
    return [[self alloc] initWithDictionary:aDictionary];
}

- (instancetype)initWithDictionary:(NSDictionary *)aDictionary {
    aDictionary = [aDictionary clean];

    self.isReady = NO;

    for (NSString* propName in [self allPropertyNames]) {
        [self setValue:aDictionary[propName] forKey:propName];
    }

    //You can add there some custom properties with wrong names like "id"
    //[self setValue:aDictionary[@"id"] forKeyPath:@"objectID"];
    self.isReady = YES;

    return self;
}

- (NSDictionary *)dictionaryRepresentation {
    NSMutableDictionary *result = [NSMutableDictionary dictionary];
    NSArray *propertyNames = [self allPropertyNames];

    id object;
    for (NSString *key in propertyNames) {
        object = [self valueForKey:key];
        if (object) {
            [result setObject:object forKey:key];
        }
    }

    return result;
}

- (NSArray *)allPropertyNames {
    unsigned count;
    objc_property_t *properties = class_copyPropertyList([self class], &count);

    NSMutableArray *rv = [NSMutableArray array];

    unsigned i;
    for (i = 0; i < count; i++) {
        objc_property_t property = properties[i];
        NSString *name = [NSString stringWithUTF8String:property_getName(property)];
        [rv addObject:name];
    }
    //You can add there some custom properties with wrong names like "id"
    //[rv addObject:@"objectID"];
    //Example use inside initWithDictionary:
    //[self setValue:aDictionary[@"id"] forKeyPath:@"objectID"];

    free(properties);

    return rv;
}

@end

此外,您可以看到我的解决方案不适用于具有嵌套对象或数组的自定义对象。对于数组 - 只需更改dictionaryRepresentation方法中的代码行:

    if (object) {
        if ([object isKindOfClass:[NSArray class]]) {
            @autoreleasepool {
                NSMutableArray *array = [NSMutableArray array];
                for (id item in (NSArray *)object) {
                    [array addObject:[item dictionaryRepresentation]];
                }

                [result setObject:array forKey:key];
            }
        } else {
            [result setObject:object forKey:key];
        }
    }
于 2017-01-30T12:41:06.727 回答