Question

I would like to know if it is possible to set the properties of an NSObject from an NSDictionary without setting each one individually.

The property names in the NSObject match the key names in the NSDictionary.

Is there an easy way of doing this?.

Était-ce utile?

La solution

Assuming the types for the values match, you want to use - (void)setValuesForKeysWithDictionary:(NSDictionary *)keyedValues NSNull values will be treated as nil.

Autres conseils

I wrote a small library that automates this, it also handles conversion of dates https://github.com/aryaxt/OCMapper

It automatically converts NSDictionary to NSObject as long as all keys are the same as property names.

Customer *customer = [Customer objectFromDictionary:customerDictionary];
NSArray *customers = [Customer objectFromDictionary:listOfCustomersDictionary];

if the key and property names are not the same you can write mapping

[mappingProvider mapFromDictionaryKey:@"dob" toPropertyKey:@"dateOfBearth" forClass:[Customer class]];
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top