EFEnumTransformer Class Reference
Inherits from | NSValueTransformer |
Declared in | EFEnumTransformer.h EFEnumTransformer.m |
Tasks
-
+ transformerWithEnumMapping:
Convenience method for creating a transformer to map type strings to enum values
-
– initWithEnumMapping:
Creates a transformer to map type strings to enum values
-
enumMapping
The enum mapping dictionary
property
Class Methods
transformerWithEnumMapping:
Convenience method for creating a transformer to map type strings to enum values
+ (instancetype)transformerWithEnumMapping:(NSDictionary *)enumMapping
Parameters
- enumMapping
The enum mapping dictionary
Return Value
An enum transformer
Discussion
Convenience method for creating a transformer to map type strings to enum values
For the enum mapping dictionary the keys should be the values from your enum wrapped in a NSNumber and the objects should be corresponding strings.
Declared In
EFEnumTransformer.h
Instance Methods
initWithEnumMapping:
Creates a transformer to map type strings to enum values
- (instancetype)initWithEnumMapping:(NSDictionary *)enumMapping
Parameters
- enumMapping
The enum mapping dictionary
Return Value
An enum transformer
Discussion
Creates a transformer to map type strings to enum values
For the enum mapping dictionary the keys should be the values from your enum wrapped in a NSNumber and the objects should be corresponding strings.
Declared In
EFEnumTransformer.h