mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-23 20:31:13 +08:00
Fix bug in which relationship connection operations are not enqueued for RKMappingOperation instances whose mapping is an RKDynamicMapping
This commit is contained in:
@@ -148,6 +148,13 @@
|
||||
*/
|
||||
@property (nonatomic, strong, readonly) RKMapping *mapping;
|
||||
|
||||
/**
|
||||
The concrete object mapping for the operation.
|
||||
|
||||
If the value of `mapping` is an `RKObjectMapping`, returns the same value as `mapping`. If `mapping` is an `RKDynamicMapping`, then returns the concrete `RKObjectMapping` object selected for mapping `sourceObject`.
|
||||
*/
|
||||
@property (nonatomic, strong, readonly) RKObjectMapping *objectMapping;
|
||||
|
||||
///-------------------------------------------
|
||||
/// @name Configuring Delegate and Data Source
|
||||
///-------------------------------------------
|
||||
|
||||
@@ -43,7 +43,7 @@ extern NSString * const RKObjectMappingNestingAttributeKeyName;
|
||||
@property (nonatomic, strong) NSDictionary *nestedAttributeSubstitution;
|
||||
@property (nonatomic, strong) NSError *validationError;
|
||||
@property (nonatomic, strong, readwrite) NSError *error;
|
||||
@property (nonatomic, strong) RKObjectMapping *objectMapping; // The concrete mapping
|
||||
@property (nonatomic, strong, readwrite) RKObjectMapping *objectMapping; // The concrete mapping
|
||||
@end
|
||||
|
||||
// Defined in RKObjectMapping.h
|
||||
|
||||
Reference in New Issue
Block a user