Since iOS 5, CoreData introduces its own private queue
where you can let some operations (especially save context
) running in background.
This must be done via [context performBlock:...]
.
It is easy very good for saving the context
. However, how about for NSFetchRequest
? I mean what if I want to fetch something and wish to fetch in the background? I don't think [context performBlock..] can achieve this.
Is there also a new way to do so?