https://github.com/wilddylan/coredata_ce
XXCoreData Handle
https://github.com/wilddylan/coredata_ce
Last synced: about 1 year ago
JSON representation
XXCoreData Handle
- Host: GitHub
- URL: https://github.com/wilddylan/coredata_ce
- Owner: wilddylan
- Created: 2014-10-11T10:46:24.000Z (over 11 years ago)
- Default Branch: ADCoreData
- Last Pushed: 2014-11-29T16:01:24.000Z (over 11 years ago)
- Last Synced: 2025-01-29T00:25:34.659Z (over 1 year ago)
- Language: Objective-C
- Size: 523 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CoreData_CE
===========
XXCoreData Handle
//
// ADCoreData.h
// CoreData_CE
//
// Created by Dylan on 14-10-11.
// Copyright (c) 2014年 Dylan. All rights reserved.
//
/*!
* @Author Dylan.
*
* Please add CoreData.FrameWork
*/
#import
#import
@interface ADCoreData : NSObject
/*!
* @Author Dylan.
*
* context
*/
@property (nonatomic, strong, readonly) NSManagedObjectContext * manageContext;
+ (instancetype)shareInstanceWithStoreName: (NSString *)storeName;
/*!
* @Author Dylan.
*
* Methods
*/
- (NSMutableArray *)findByModel: (id)model;
- (NSMutableArray *)findByModel: (id)model
predicateString: (NSString *)predicateString;
/*!
* Update
*/
- (BOOL)create: (id)model;
- (BOOL)remove: (id)model;
- (BOOL)remove: (id)model
predicateString: (NSString *)predicateString;
- (BOOL)modify: (id)model
predicateString: (NSString *)predicateString;
@end