mirror of
https://github.com/zhigang1992/NTDCoreDataTableViewController.git
synced 2026-04-01 11:54:13 +08:00
32 lines
451 B
Objective-C
32 lines
451 B
Objective-C
//
|
|
// NTDFakeCDTVC.m
|
|
// NTDCoreDataTableViewController
|
|
//
|
|
// Created by Nicholas Tian on 3/9/14.
|
|
// Copyright (c) 2014 Nicholas Tian. All rights reserved.
|
|
//
|
|
|
|
#import "NTDFakeCDTVC.h"
|
|
|
|
@interface NTDFakeCDTVC ()
|
|
|
|
@end
|
|
|
|
@implementation NTDFakeCDTVC
|
|
|
|
- (void)logFetchFailure
|
|
{
|
|
[super logFetchFailure];
|
|
|
|
self.loggedFailure = YES;
|
|
}
|
|
|
|
- (void)logError:(NSError *)error
|
|
{
|
|
[super logError:error];
|
|
|
|
self.loggedError = YES;
|
|
}
|
|
|
|
@end
|