mirror of
https://github.com/zhigang1992/NTDCoreDataTableViewController.git
synced 2026-03-29 15:27:56 +08:00
17 lines
386 B
Objective-C
17 lines
386 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 performFetchIsCalled;
|
|
|
|
@end
|