PNObject/Pod/Classes/PNObjectModel.h
2016-01-26 00:29:37 +01:00

47 lines
885 B
Objective-C

//
// PNObjectModel.h
// Pods
//
// Created by Giuseppe Nucifora on 16/01/16.
//
//
#import <Foundation/Foundation.h>
@protocol PNObjectPersistency <NSObject>
@required
- (BOOL) initObjectPersistency;
@end
@interface PNObjectModel : NSObject
@property (nonatomic, assign) id<PNObjectPersistency> _Nonnull persistencyDelegate;
+ (_Nonnull instancetype) sharedInstance;
/**
* <#Description#>
*
* @param object PNObject Subclass to save
*
* @return return It return the object if the save was successful.
* @return return NSError
*/
- (id _Nonnull) saveLocally:(id _Nonnull) object;
/**
* <#Description#>
*
* @param object PNObject Subclass add list objects and save the list
*
* @return <#return value description#>
*/
- (id _Nonnull) removeObjectAndSaveLocally:(id _Nonnull) object;
- (id _Nonnull) fetchObjectsWithClass:(Class _Nonnull) class;
@end