mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
39 lines
982 B
Objective-C
39 lines
982 B
Objective-C
//
|
|
// NSManagedObject+RKAdditions.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 3/14/12.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import <CoreData/CoreData.h>
|
|
|
|
@class RKManagedObjectStore, RKEntityMapping;
|
|
|
|
/**
|
|
Provides extensions to NSManagedObject for various common tasks.
|
|
*/
|
|
@interface NSManagedObject (RKAdditions)
|
|
|
|
///--------------------------------------
|
|
/// @name Inspecting Managed Object State
|
|
///--------------------------------------
|
|
|
|
/**
|
|
Determines if the receiver has been deleted from the persistent store
|
|
and removed from the object graph.
|
|
|
|
Unlike isDeleted, will return YES after a save event or if the managed object was deleted
|
|
in another managed object context that was then merged to the persistent store.
|
|
|
|
@return YES if the object has been deleted from the persistent store, else NO.
|
|
*/
|
|
- (BOOL)hasBeenDeleted;
|
|
|
|
/**
|
|
* Returns YES when an object has not been saved to the managed object context yet
|
|
*/
|
|
- (BOOL)isNew;
|
|
|
|
@end
|