I have a data set displayed in a UICollectionviewController, which I access using [fetchedResultsController objectAtIndexPath:indexPath]
Using a segue, I move onto a modal scrollview+uipageController, where each data is displayed one after the other. The problem is to access each of them individually, as the view controller does not hold the fetch request. I'm thinking passing an array of object IDs, so that each page can fetch the associated data, from the data store.
my question is: given the fetchresultController, in the UICollectionviewController I'm seguing from, is there a way to quickly create the array of Object IDs, or do I have to loop through each managedObject, obtain their ManagedObjectID, and fill it into the array ?