12
votes
App crashes whenever accessing NSManagedObjects in a certain method
The following code is shorter, more efficient, easier to read, and doesn't have the six or so memory leaks of your first block:
NSFetchRequest *request = [[NSFetchRequest alloc] ini …
0
votes
Coredata on iPhone, setFetchBatchSize & setPropertiesToFetch in one Request
Looks a lot like you found a bug in CoreData. You can verify for sure by turning on SQL logging - I'm guessing turning on both options generates slightly invalid SQL.
The option you want to …
3
votes
How to remove CoreData’s objects from memory?
You can tell the managedObjectContext to retain or not retain objects (in addition to the ones you retain) with:
[managedObjectContext setRetainsRegisteredObjects:YES];
…
5
votes
core data or sqlite or plist files
Since you can't control the internal keys in CoreData, and because CoreData requires a VERY specific schema to work at all, AND you don't want to mess with CoreData's SQL directly (it has all kinds …
1
vote
Need help with many-to-many relationships in core data for iPhone
If you want to call a method like "-addCatagoryObject:" on your NSManagedObject subclass, you have to have the code for that method in your actual .m file - it is NOT generated at runtime.
…
5
votes
Does CoreData on iPhone support IN predicates?
I believe Alex is right that you have to use an NSArray, although obviously it'd be nicer if NSSet were accepted here, since order isn't that important (although it could conceivably affect how qui …
4
votes
Auto-save with Cocoa and Core Data
At the end of each event in an AppKit app, CoreData will run a -processPendingTransactions for you.
One side-effect of this is that if you've registered with your NSManagedObjectContext to …
