iPhone CoreData funky fetch-request: I want to build function to retrieve array of Unique-CategoryCodes for my products
Is there a way to inspect a NSPredicate object for the purposes of serializing it into a URL? I am trying to retrieve the data remotely and need to translate the predicate object into a URL with query
I\'m using Core Data to cache a decent amount of information, and I have a To-Many relationship set up among my managed objects. Naturally I use an NSFetchRequest to fetch an array of the singular sid
I have two entities. Client and Project.A Client has many Projects, but a Project can only be assigned to one Client. This has been designed with the datamodel.
I have an NSFetchRequest which is returning the objects\' properties in an NSDictionaryResultType. Is it possible to also get the objects\' ObjectId within this dictionary? Otherwise I will need to ru
Reference POST: Core Data - Basic Questions I am able to get the Managed object context from this piece of code. It bring me to another question. I have 2 VIEW CONTROLLERS and 1 NSObject
I have a simple entity called \"Store\" built in Xcode\'s data modeler for use in an iPhone application.I also have a class (Store) associated with it and I\'ve been able to store and retrieve data us
I am playing with an app that uses Core Data and NSManagedObjects to populate a UITableView.There is only one class in my application, called Event.I have created the following custom instance method
I have a one to many entity relationship between two entities: EntityP (Parent) <-->> EntityC (Child)
We cannot use NSFetchRequest without providing NSSortDescriptor(s). All i want to do is fetch the results and show them in the order in which they were created. Is there a built-in way to do that?, or