Tagged Questions
0
votes
1answer
28 views
UITableView populating Core data one-to-many relationship using checkmark - CoreData: error: Serious application error
I have an app where I'm trying to select Resources (buildings, IT Systems) that a Programme relies on. The relationship between the Entities is ...
0
votes
2answers
48 views
Fetching one to many relationship data with Core Data
I have a Core Data model with an entity called SeasonInfo that contains a bunch of attributes, one of which is an attribute called year (int 16). SeasonInfo contains a one-to-many relationship to an ...
0
votes
1answer
33 views
Core Data: Always have inverse relationship. Why?
I know both Apple and the consensus say that in Core Data, every relationship should have an inverse. This is not a question asking whether that is indeed the case. I do believe Apple and the experts. ...
1
vote
2answers
64 views
CoreData transient relationship example
Does anybody have an example on how to model and code a transient to-one relationship in CoreData? For example, I have 2 entities with a one-to-many relationship. Doctor and Appointment. Now I want ...
0
votes
0answers
30 views
Interrogating Core Data one-to-one relationship
hopefully, this is a simple question, but I cant find the answer in core data docs. I have an app setting up employees as members of functions (departments) using the relationship ...
0
votes
1answer
50 views
iphone/ios - core data relationship concept
I have a concept problem and I hope you guys can help me! On my app the user and his contacts can create events and share it.
here is my app model:
On App start I create my Profile (User) and fill ...
1
vote
1answer
65 views
when adding a relationship object w/ core data get “property cannot be found in forward class object” error
I have a core data model with four entities. The entity Player has a to-Many relationship to the other entities (Player_Scores,Custom_Exercise,Selected_Exercise).
In my app delegate, I make ...
2
votes
2answers
52 views
How to avoid fetching the sub entities in a relationship
Assume I have 3 entities, X, Y, Z.
X has a to-many relationship "Ys" pointed to Y, and Z is a sub entity of Y.
In my situation, I want to fetch all the "Y"s of a given X, but I don't want any Z.
...
0
votes
2answers
22 views
coredata- relationship failing to behave properly
This is structure of coredata architecture.
After adding entries to 'Artists', using them to newly added 'Album' entries is working perfect.
But the problem is as shown in img- 2 & 3, after ...
0
votes
2answers
35 views
How to pass the model to a Controller in Core Data
Say I have a Core Data class called RecipeBook which has a property (relationship) called recipes, a NSSet of Recipe Objects.
I display the RecipeBooks on a UITableView and when the user taps on a ...
0
votes
0answers
77 views
Core Data query through many "many-to-many relationships
New to Core Data, I'm trying hard to understand how to access and query through multiples many-to-many relationships. Here's the model:
http://dl.free.fr/dRqgjMgR4
I would like to get the number of ...
0
votes
0answers
168 views
Core Data Managed Object one-to-many relationship insert/update save
Lets assume I have person->phones relationship (One to many of course). Initial insert save is working correctly where I do:
if (does not exist) {
user = (Member *)[NSEntityDescription ...
1
vote
1answer
39 views
Core Data Relationships after entities are filled up with data
I have two entities Team & TeamMembers which are initially filled with data from two json files.
So there is no connection between those entities at the moment.
Is it possible to make ...
0
votes
1answer
81 views
Core Data - Find out if a relationship between two objects exists
I'm making an app with a questionnaire in it and I'm using Core Data to hold all of its data.
There are three entities:
Person (the person taking taking the questionnaire),
Question (the question),
...
4
votes
1answer
149 views
CoreData relationships not merging from one MOC to another
I've been banging my head against the wall with this bug. Basically relationships aren't being merged from one context to another correctly.
Let's say I have two entity types in my model, Student ...
0
votes
2answers
149 views
Core Data: Multiple relations to same object
I have a Core Data database containing (among others) WorkingPlan and Position. A WorkingPlan has zero or more Position objects.
Everything works fine, until I am trying to add the same Position to ...
0
votes
1answer
84 views
iOS CoreData Relation: Use optional with or without minimum
In core data you can set a relationship to optional but you can set it with minimum checked or without... Check the images below for the difference.
What I think I've noticed is that when you search ...
0
votes
1answer
77 views
Deleting CoreData object & Inverse relationships
I have an object (A) that has a To-Many relationship to another object (B).
Also, B holds an inverse relationship to A.
When I delete B, It still shown on A's relation ship count, unless i manually ...
0
votes
1answer
46 views
Core data loses relationship data after quitting app
This seems really strange to me. I have a core data database. I have two tables, let's call them tableA and tableB.
tableA has lots of data, maybe thousands of records.
tableB has a few records.
...
2
votes
2answers
359 views
Core data relationship fault : null key
I have an entity named Person that may have one home, and an entity named Home that may have one to N homes:
Then I have two array controllers:
Homes Controller, bound with managed object ...
0
votes
1answer
55 views
I'm stuck with arrays [closed]
I've got objects in an array, lowAnd[], and every object in this array has a relationship with 0 to many other objects (Goals).
How can I put this objects, Goals, in another array?
Some objects in ...
0
votes
0answers
42 views
Distinguish relationship using an id
I'm wondering wether it's possible to distinguish a certain relationship between 2 or more elements (a to many relationship) from the same relationship between other elements using an id or something? ...
0
votes
1answer
168 views
NSPredicate with relationship @“SELF.<relationship>.<relationship>.<object> == %@”
I have the following NSManagedObjects:
Product <<->> ProductAttribute <->> ProductAttributeOption
What's the correct way for using an NSPredicate to fetch the ...
6
votes
1answer
290 views
Struggling with RestKit mapping object and references
Here my entities
- HomeArticle
identifier
article (relationship)
- Article
identifier
title
subtitle
text
home (relationship)
I have a payload that looks like this:
[
{
"id": "1",
...
0
votes
1answer
97 views
iOS CoreData inverse relationships to itself
I am trying to build a CoreData model similar to Twitter user when User can have many other users who follows him and many other users followed by him. I attached the model that I have tried to use ...
0
votes
1answer
66 views
Core data. How to organize relations beetween two resources. (one has urls of images used by another)
I am developing a Forthsquare-like app for iOS. Using Core Data I am preparing the schemes for two resources: Place and Category. Each place belongs to category. Each category has *image_url* field ...
0
votes
1answer
215 views
How to create a core data model which parent entity and relationship
Here is the description:
Item is abstract entity
Every Item will have a parentItem relationship (it could be nil)
BookItem and CategoryItem are child of Item
CategoryItem will have a childItems ...
3
votes
2answers
503 views
RestKit, Core Data, and Relationship problems. Parent object not recognizing child set
I am trying to map a relationship between Articles and the Photos that belong to them using RestKit. Both objects get stored properly when requesting the resource, but it seems the relationship does ...
0
votes
1answer
496 views
relationship fault (core data)
I am new to core data and I need help with the following problem:
I have two entities: Talk and Speaker. They have a to many relationship.
Talk - destination: Speaker , inverse: talk
Speaker - ...
0
votes
0answers
42 views
Transferring an object from a core data relationship to another
I have this relationships:
CARD <-->> OBJECT <<--> PLAYER.
I want to take an object "theObj" from a "objects" relationship to another, like this:
[[theCard ...
3
votes
1answer
90 views
CoreData change relationships in a loop
I have a simple model like this:
item category --> category
<--- items
and following data:
item A -> category blue
item B -> category blue
item C -> category blue
item D ...
0
votes
2answers
69 views
CoreData - Get posts and ONLY their unremoved comments
I have two collections:
- Post
- Comment
Post.comments = [comment1, comment2, ...]
comment.removed is a boolean.
I'd like to fetch all Posts but exclude comments which are removed. Is there a way ...
0
votes
1answer
107 views
Core Data: How to model multiple one-to-many between two entities
I have two entities - Item and Tag. An Item can have one or more read-only (factory) tags that the user can't edit, and then one or more read-write (user) tags that the user can create at any time. ...
2
votes
2answers
724 views
Using NSFetchRequest from Core Data to get aggregated relationship counts?
I am having trouble understanding how to best use Core Data to solve this problem, including the right terminology to describe the problem. Below is a illustrative sample of the problem (but not my ...
0
votes
3answers
116 views
Core Data: save error after deleting objects with a non-optional relationship
I have a simple data model: a parent entity in an optional one-to-many relationship with a child entity. The inverse relationship (child -> parent) is mandatory (non-optional).
After a child object ...
0
votes
2answers
156 views
Modeling an inverse relationship in Core Data
Relationships in Core Data just confuse me. I've read and read, but I just don't get it. I guess it doesn't help that I'm usually frustrated when reading. I want to do something really simple:
I have ...
1
vote
1answer
42 views
CoreData - Does changing one side of relation ship effects the other side
I have a one to many relationship between Animal and Exhibit.
One Exhibit can contain many animals.
Does changing the animal exhibit will automatically change the other side and remove the animal ...
0
votes
2answers
91 views
How to have repeated items in an Ordered To-Many relationship?
In Core Data of Xcode 4.3.2, an Ordered To-Many relationship is modelled with NSOrderedSet. It works well until I found the need to have repeated items in the relationship; it should really be ...
1
vote
2answers
417 views
Filtering a relationship of an NSManagedObject
Suppose a Manager has a to-many relationship with Employee objects. Given a reference to a Manager object (i.e. NSManagedObject *manager), how do I get a reference to "the Employee with the lowest ...
0
votes
1answer
391 views
Relationship between NSManagedObject across multiple NSManagedObjectContexts
My application uses multiple threads with one managed object context per thread.
For clarity I will refer to the different managed object contexts as: moc1, moc2, ..., etc.
Let's assume we have two ...
-1
votes
1answer
67 views
Inverse relationship on Child's child
I'm trying to use core data relationships to make an an inverse relationship work between a child's child object.
Here is an example of what I'm trying to achieve:
I have a number of filing ...
0
votes
1answer
79 views
Core data relationship delete custom rule
I'm facing that problem I've got 2 managed object subclasses connected by a "one-to-many" relationship. When I delete the parent I'd like to do some operations for each one of the children objects ...
1
vote
1answer
215 views
Core Data Relationships - Two entities to one entitiy
I have three entities.
Author
Newspaper
Dissertation
Newspaper and Dissertation both can have one or more Author. I have managed to do this fine with Newspaper. What I am trying to accomplish is ...
0
votes
1answer
775 views
Insert one object to a many relationship - IOS Core Data
I have seen various answers around helping explain adding records in one-to-many relationships but I can't seem to make head or tail of it for my code.
I have got a relationship - Country has many ...
0
votes
0answers
129 views
CoreData with relationship in the same UItableView
I need to load the "Main Entity" that has a relationship one-to-many with "Child Entity" into the same UITableView, how can i do?
Thanks in advance.
Update
i use the following code to populate the ...
0
votes
1answer
77 views
Reassigning one-to-one relationship nulls previous object / CoreData iOS
I have 2 entities. ObjectA stores all ObjectB's objects through a many-to-many relationship. ObjectA also stores one specific object as a default object using a one-to-one relationship. The idea is to ...
0
votes
1answer
56 views
Core Data - unlinking object from relationship
I have a one-to-one unidirectional relationship between a "Booking" object and an "Address" object and a persistent store.
Normally, each booking stays with the same Address, and under normal ...
0
votes
2answers
167 views
Core Data NSPredicate for toMany Relationsihp
I've got a problem in the formulation of my query; this is the scenario:
based on this db schema, I know the naming part sucks a little, but this is
a project which has been already kicked off, so ...
0
votes
1answer
111 views
How to create and fetch relational records in core data
Total newbie question now... Suffice to say, I have searched for a completely noddy explanation but have not found anything 'dumb' enough. The problem is...
I have created a core data stack in which ...
3
votes
1answer
1k views
Core Data Faulting and Fetching of To-Many Relationships
I have several "theory" questions on Core Data behavior related to what happens with a to-many relationship and when to rely on walking the relation from a parent entity and when a fresh fetch request ...



