Tagged Questions
3
votes
1answer
391 views
How to maintain an ordered table with Core Data (or SQL) with insertions/deletions?
This question is in the context of Core Data, but if I am not mistaken, it applies equally well to a more general SQL case.
I want to maintain an ordered table using Core Data, with the possibility ...
2
votes
2answers
824 views
implementing core data to an existing iPhone-project
I´ve some trouble with implementing Core Data to my existing iPhone-Project. First I wanna give you a more detailed view on it:
Some of my classes are nested into each other: The class "Game" has an ...
1
vote
2answers
2k views
Manual Core Data schema migration without “document changed” warning?
The data model for my Core Data document-based app (10.5 only) is in a
framework, so automatic schema upgrades using a Core Data mapping
model don't appear to work. It appears that the Core Data ...
0
votes
1answer
61 views
How to define a to-self relationship that's to-many only one way using Core Data?
In a vector graphics manipulation program, I have a "Group" entity which specifies groups of graphics and other groups. A Group can belong to only one other Group, but can contain many other Groups. ...