0
votes
1answer
20 views
Properties of relations in Core Data
In order to better learn both Cocoa and Core Data, I decided to build an application that holds cooking recipes. However, while trying to create the CD model, I already got stuck. …
0
votes
1answer
17 views
How to write a Core Data predicate to filter to specific sub-entity types?
I have a superentity called FObject with several subentities, say Foo1, Foo2, and Foo3. I have a number of tableviews that should show information about different collections of th …
0
votes
1answer
15 views
Does re-fetching NSFetchedResultsController do anything?
I have a fetched results controller with a predicate on my Thing entity that looks like this: "thingDomain.domainCurrentAccount !=NULL". It finds all of my Thing objects that are i …
3
votes
1answer
58 views
How to optimize Core Data query for full text search
Can I optimize a Core Data query when searching for matching words in a text? (This question also pertains to the wisdom of custom SQL versus Core Data on an iPhone.)
I'm working …
1
vote
1answer
17 views
Displaying data from multiple entities in a single NSTableView (Core-Data)
Hi there,
I have an entity called Pupil, and an entity called Loan.
The Pupil entity has the attributes: firstName, lastName, address, postCode, telephoneNumber.
The Loan entity ha …
0
votes
1answer
14 views
Core Data Migration error message “’Model does not contain configuration ‘XYZ’.’”
I have a Managed Object Context to which I add two different SQLite stores. I use Configurations in the Mananged Object Model to assign certain entities to one store and other enti …
0
votes
1answer
15 views
iPhone Core Data - restrict returned results to future events
Hi,
I have a data store of events, however I only want to show events that occur in the future.
I have a field denoting the date of the event of type NSDate.
How do I filter ev …
0
votes
1answer
19 views
One to Many relationships iPhone - NSPredicate core data query
I have a have a number of calendars, which each have a number of events. I would like to find all the events for a calendar where date > x.
My method signature looks like this
-( …
2
votes
1answer
29 views
Memory usage accounting in a navigation controller-based app;
I have a navigation controller-based application that could be active for a relatively long time and can load multiple screens, revisiting some in the course of its life - a busine …
1
vote
3answers
43 views
Pre-load existing data into a Core Data-based iPhone app?
In a previous project, I built an iPhone app for 2.2.x that used SQLite. It had existing data (in XML form) that needed to be pre-loaded into the build. So I wrote a small tool whi …
0
votes
3answers
26 views
Saving to Core Data with NSMutableArray
Hi all!
Been having a bit of a headache with this one and was wondering if someone could offer some advice!
Im implementing persistent storage with Core Data.
I have two Entitie …
1
vote
1answer
32 views
Tableviecells are not getting deallocted…Memory Management issues.
hi...
I am working on an application in which uitableviewcells of uitableview are customized which contains a textfied(contains managedobject/core data), label((contains managedobj …
0
votes
1answer
23 views
CoreData - how much is done to maintain relationships automatically
I wonder if I've been doing too much myself, and could be relying on CoreData more. Suppose I have two managed objects, Dog and Tail, which have a one-to-one relationship. Dog has …
1
vote
1answer
29 views
Combine two core data applications! Iphone
Hello all,
Just preparing myself for a task that i feel could be quite troublesome, and just wanted to get any advice or pointers on where i may fall over with this task.
I have …
0
votes
1answer
45 views
iPhone coredata fetch request, basics around relationships and sections
Hi all,
I've got what is hopefully a simple question - I've got two entities - List and ListItem - and there's a one-to-many relationship set up between them, all good.
My probl …
