Hi all,
I have a class,
@interface OnlineDataModel : TTModel < NSFetchedResultsControllerDelegate > { ...
Where TTModel is,
@interface TTModel : NSObject < TTModel > { ...
OnlineDataModel class is Singleton, so its object never expires. I am performing the Fetch operation within this class and setting the delegate of the fetchedResultsController by self. Now i am changing the objects fetched after constanct delay to just check that it gives the call backs, objects are changed and changes are reflected to the database as well, But OnlineDataModel class is not receiving the Call Backs so that my UI can get updated.
i am badly stuck in it , so any help will highly be appreciated.
Thanks in advance :)