views:

85

answers:

1

Hi! I am porting some Core Data code from iPhone to Mac OS X. PRoblem is that Core Data Framework on Mac OS X does not have NSFetchedResultsController.h nor NSFetchedResultsControllerDelagete protocol declared. At least I am not able to force Cocoa application to see this class even if I drag Core Framework from iPhone project to link with Mac Application?

Anyone faced this problem?

+5  A: 

On Mac OS X, you should probably be taking advantage of the Cocoa controllers. NSArrayController is probably what you want.

Barry Wark