I like to populate records according to created date from database using CoreData
,so I am using NSFetchedResultsControllerDelegate
for good feature ,as I add like:
@interface FBCDMasterViewController : UITableViewController
<NSFetchedResultsControllerDelegate>
Its giving error:
Cannot find protocol declaration for 'NSFetchedResultsControllerDelegate'
plase help out
If you are using coreData, simply adding the framework is not enough. You also have to import the header in the files which need it.
#import <CoreData/CoreData.h>
This placed in your prefix Header file should fix it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With