-
Notifications
You must be signed in to change notification settings - Fork 0
/
TIUITableViewCoreDataProvider.h
86 lines (67 loc) · 4 KB
/
TIUITableViewCoreDataProvider.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Copyright (c) 2010 Tim Isted
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@protocol TIUITableViewCoreDataProviderDelegate;
@interface TIUITableViewCoreDataProvider : NSObject <UITableViewDataSource, UITableViewDelegate, NSFetchedResultsControllerDelegate> {
NSObject <TIUITableViewCoreDataProviderDelegate> *_delegate;
NSError *_mostRecentError;
NSManagedObjectContext *_managedObjectContext;
NSFetchedResultsController *_fetchedResultsController;
NSFetchRequest *_fetchRequest;
NSString *_sectionNameKeyPath;
NSString *_cacheName;
NSString *_entityName;
NSArray *_sortDescriptors;
NSPredicate *_fetchPredicate;
NSString *_displayAttributeName;
UITableView *_tableViewToUpdate;
BOOL _reloadsEntireTableViewForAnyChange;
BOOL _saveContextAfterEditing;
}
- (id)initWithFetchRequest:(NSFetchRequest *)aFetchRequest managedObjectContext:(NSManagedObjectContext *)aMoc;
- (id)initWithEntityName:(NSString *)anEntityName displayAttributeName:(NSString *)anAttributeName managedObjectContext:(NSManagedObjectContext *)aMoc;
- (void)configureForAndSetAsDataSourceAndDelegateToTableView:(UITableView *)aTableView;
- (void)performFetch;
- (void)performFetchAndReloadTableView;
@property (nonatomic, assign) NSObject <TIUITableViewCoreDataProviderDelegate> *delegate;
@property (nonatomic, retain) NSError *mostRecentError;
@property (nonatomic, retain) NSManagedObjectContext *managedObjectContext;
@property (nonatomic, retain) NSFetchedResultsController *fetchedResultsController;
@property (nonatomic, retain) NSFetchRequest *fetchRequest;
@property (nonatomic, retain) NSString *sectionNameKeyPath;
@property (nonatomic, retain) NSString *cacheName;
@property (nonatomic, retain) NSString *entityName;
@property (nonatomic, retain) NSArray *sortDescriptors;
@property (nonatomic, retain) NSPredicate *fetchPredicate;
@property (nonatomic, retain) NSString *displayAttributeName;
@property (nonatomic, retain) UITableView *tableViewToUpdate;
@property (nonatomic, assign) BOOL reloadsEntireTableViewForAnyChange;
@property (nonatomic, assign) BOOL saveContextAfterEditing;
@end
@protocol TIUITableViewCoreDataProviderDelegate
@optional
- (void)tableViewCoreDataProvider:(TIUITableViewCoreDataProvider *)aProvider encounteredError:(NSError *)anError;
- (void)tableViewCoreDataProvider:(TIUITableViewCoreDataProvider *)aProvider configureCell:(UITableViewCell *)aCell forObject:(NSManagedObject *)anObject;
- (BOOL)tableViewCoreDataProvider:(TIUITableViewCoreDataProvider *)aProvider shouldDeleteObject:(NSManagedObject *)anObject;
- (BOOL)tableViewCoreDataProvider:(TIUITableViewCoreDataProvider *)aProvider canEditRowForObject:(NSManagedObject *)anObject;
- (void)tableViewCoreDataProvider:(TIUITableViewCoreDataProvider *)aProvider objectWasSelected:(NSManagedObject *)anObject;
- (BOOL)tableViewCoreDataProvider:(TIUITableViewCoreDataProvider *)aProvider shouldSelectObject:(NSManagedObject *)anObject;
@end