here is another question about how to next detailView like in Mail-App from me. There, i wanted to know how to solve that with an array.
Now i am using coreData. I have an entity named EntityAlphabet with - for example - 5 attributes. The attributes doesnt matter here. In the DetailView, i want to iterate this Entity. How can i do that?
I want to "switch" the entitys in the detailView.
BTW: I am populating my tableView with NSFetchedResultsController.
I have the exact same situation and I just passed an array of managedObjects to the detailView. Then, based upon which up/down arrow they press on the detail view, I select the appropriate object from the array. So it would be similar to the solution from the link you provided. To get the array of objects, in your didSelectRowForIndexPath: method do something along the lines of the following:
// Assumes your detail view controller has a an NSArray ivar and property setup
detailViewController.alphabetObjects=[self.fetchedResultsController fetchedObjects];
This solution is decidedly low tech and I implemented it because of my lack of knowledge at the time, i.e. 2 years ago. Now, I could think of a couple of additional ways of doing it.
Hope this helps. Good luck