Inherits from NSValueTransformer
Declared in EFEnumTransformer.h
EFEnumTransformer.m

Overview

A transformer to simplify mapping between strings and enum values

Tasks

Properties

enumMapping

The enum mapping dictionary

@property (nonatomic, strong) NSDictionary *enumMapping

Discussion

The enum mapping dictionary

Declared In

EFEnumTransformer.h

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