Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Starting from iOS5, my app started to freeze when using fetchedResultsController. I have attached the debugger result after quitting the simulator.

enter image description here

Any help will be appreciated.

Thanks

share|improve this question
How many threads do you use? Where do you try to fetch?Paste the code. It seems that you have created a dead lock. – Alex Terente Jan 19 '12 at 7:08
I am using master tableview and three other tableviews. when the list selection changes in master tableview i am using performselectorinbackground method to update three tableviews (basically i am making the fetchedresultscontroller nil and performing fetch again in those methods). The app freezes in the line NSInteger totalCount = [managedObjectContext countForFetchRequest:fetchRequest error:&error] (inside fetchedresultscontroller block).App was working fine before iOS5. – Confused Jan 19 '12 at 7:21

1 Answer

You say in the comments that you're using performSelectorInBackground: to update tableviews. This isn't right, all code affecting the UI should be executed on the main thread.

In addition (and I think this is what's causing the problem) you mustn't reuse a MOC across threads. Each thread must have its own MOC, which can then use the same NSPersistentStoreCoordinator.

You should read Apple's guide on this topic.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.