mirror of
https://github.com/zhigang1992/NTDCoreDataTableViewController.git
synced 2026-01-12 22:40:11 +08:00
18 lines
433 B
Objective-C
18 lines
433 B
Objective-C
//
|
|
// NTDFakeFetchedResultsController.h
|
|
// NTDCoreDataTableViewController
|
|
//
|
|
// Created by Nicholas Tian on 3/9/14.
|
|
// Copyright (c) 2014 Nicholas Tian. All rights reserved.
|
|
//
|
|
|
|
#import <CoreData/CoreData.h>
|
|
|
|
@interface NTDFakeFetchedResultsController : NSFetchedResultsController
|
|
|
|
@property (nonatomic) BOOL fetchWillSucceed;
|
|
@property (nonatomic) BOOL fetchWillHaveError;
|
|
@property (nonatomic) BOOL performFetchIsCalled;
|
|
|
|
@end
|