mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-01 22:42:51 +08:00
Other changes include: * Eliminated the RKObjectFactory protocol and implementations. Object mapping instances themselves are now responsible for instantiating target objects for mapping. * Introduced RKObjectAbstractMapping superclass for RKObjectMapping and RKObjectPolymorphicMapping. * Updated example applications to use block object loaders (RKTwitter and RKTwitterCoreData) * Refactored method signatures of RKObjectMapper, RKObjectMapping, and RKObjectMappingProvider to reflect the existence of abstract mapping types. This was necessary to make polymorphic mappings integrate cleanly. * Fixed overlap in RestKit error domains between network and object mapping. fixes #208
17 lines
377 B
Objective-C
17 lines
377 B
Objective-C
//
|
|
// ObjectMapping.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 9/30/10.
|
|
// Copyright 2010 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKObjectManager.h"
|
|
#import "RKObjectLoader.h"
|
|
#import "RKObjectMapping.h"
|
|
#import "RKObjectSerializer.h"
|
|
#import "RKObjectMappingProvider.h"
|
|
#import "RKObjectMappingResult.h"
|
|
#import "RKObjectMapper.h"
|
|
#import "RKParserRegistry.h"
|