-
Notifications
You must be signed in to change notification settings - Fork 1
Migration guide
Marian Paul edited this page Mar 18, 2016
·
1 revision
- The completion block changed on
WAMapper
completion:^(NSArray *mappedObjects)
becomescompletion:^(NSArray *mappedObjects, NSError *error)
- The method for reverse mapping on
WAReverseMapper
was
- (NSArray *)reverseMapObjects:(NSArray *)objects fromMapping:(WAEntityMapping *)mapping shouldMapRelationship:(WAReverseMapperShouldMapRelationshipBlock)shouldMapRelationshipBlock
and is now
- (NSArray *)reverseMapObjects:(NSArray *)objects fromMapping:(WAEntityMapping *)mapping shouldMapRelationship:(WAReverseMapperShouldMapRelationshipBlock)shouldMapRelationshipBlock error:(NSError *__autoreleasing *)error