What is the most efficient way to use Core Data?
- by Eric
I'm developing an iPad application using Core Data, and was hoping someone could clarify something about Core Data.
Right now, I populate my table by making a fetch request for all of my data in viewDidLoad. I'd rather make individual fetch requests in my tableView:cellForRowAtIndexPath:. Can anyone tell me which is more efficient, and why? In other words, is it much less efficient to make lots of small requests as opposed to one big request?