2
votes
Do I need to release xib resources?
The
[anOutlet release], anOutlet = nil;
Part is completely superfluous if you've written setView: correctly.
…
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 …
