-
From the mailing list:
> I'm having similar performance issues after upgrading from 0.10 to 0.20. After playing with instruments for a bit I narrowed the issue down to this part of RKManagedObjectMap…
-
Move
@property (nonatomic, strong) NSFetchedResultsController *controller;
as a public property so that subclasses os SSCoreDataSource can access the controller.
-
First of all: Thank you so much for showing me how "easy" it is now to implement iCloud.
I know, that this stack is not a full implementation, but perhaps I can ask two things I see not clear.
If I …
-
I'm not totally sure of this, but I have big problems with deadlocks (together with NSFetchedResultsController) when saving the privateQueueContext via the NSManagedObjectContextDidSaveNotification bl…
-
Maybe I am doing something wrong, but it is really hard to understand.
The objective things are:
1) The app hang, and pausing the execution it hangs on the main thread after calling resetPersistentSt…
ghost updated
10 years ago
-
In scenarios, where one has to load potentially hundreds of records and (e.g.) display those in a UITableView, Apple suggests using the NSFetchedResultsController in order to lazy load at the time of …
ralfr updated
11 years ago
-
I must be doing something wrong because I can't get core data to update although the tableview is working properly. Here is the relevant code:
if (editingStyle == UITableViewCellEditingStyleDelete) …
-
Hello,
I don't know if this question is specific to MagicalRecord or if it is a CoreData question.
What I am trying to archive is to represent a folder-structure with subfolders and files.
If love t…
-
I am using `+[MagicalRecord saveWithBlock:completion:]` to save in a background thread, however the UI still freezes right after this call. This is my code:
``` objective-c
NSMutableArray *itemIds = …
-
My application uses many entities. The primary table is not a good place to put the iCloud switch. It uses a split view on the iPad with a search box. I tried to put a view in the table with the iClou…