mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-27 05:50:27 +00:00
15 lines
472 B
Objective-C
15 lines
472 B
Objective-C
#import <CoreData/NSManagedObjectID.h>
|
|
|
|
@interface NSManagedObjectID (private)
|
|
- initWithEntity:(NSEntityDescription *)entity;
|
|
- (NSString *)storeIdentifier;
|
|
|
|
// Do not use referenceObject directly except for debugging
|
|
// Use -[NSAtomicStore referenceObjectForUniqueID:] as this needs to unique the ID
|
|
- referenceObject;
|
|
|
|
- (void)setStoreIdentifier:(NSString *)storeIdentifier;
|
|
- (void)setReferenceObject:value;
|
|
- (void)setPersistentStore:(NSPersistentStore *)store;
|
|
@end
|