0
votes
0answers
20 views

Fetch update in Cocoa

this is the code in my AppDelegate.m: -(IBAction)fetch:(id)sender{ NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; NSEntityDescription *entity = [NSEntityDescription ...
0
votes
0answers
30 views

iOS Core Data “initialization time”?

In my viewWillAppear I execute multiple fetch requests. I noticed that on the first fetch request, nothing is found even though I know items should be found. I tried sleeping the main thread before ...
1
vote
1answer
39 views

How to fetch all to many items from a specific Core Data parent entity ID

I am pretty new to this and assume I am missing something very simple, I have tried this site and anywhere I could search but found no straightforward answer. My situation.. My model can have many ...
2
votes
2answers
53 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
0answers
34 views

Are Fetched Properties KVO compliant?

Strange behavior into my Core Data application. I have an entity with a fetched property, whose result is stored into the content array of a controller. The first time I run the application, the ...
0
votes
0answers
81 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 ...
1
vote
1answer
256 views

Saving and Deleting NSManagedObject & NSManagedObjectContext

Three Questions but they are all related. If you like I can divide them into three questions so that you can more credits. Let me know if you'd like for me to do that. I have the following code ...
0
votes
1answer
85 views

Fetching data using join-table in CoreData

I have three tables with relations like on the picture below. With the help of Mark Kryzhanouski (CoreData many-to-many relationship) I know how to access to the set of all ingredients in some ...
0
votes
2answers
137 views

Fetching large number of data from CoreData using two NSFetchedResultsController

I am trying to fetch 10000records from CoreData in a UITableView using NSFetchedResultsController and trying to make it as fast as possible (since the request has a sort descriptor it takes longer to ...
0
votes
2answers
158 views

fetch primary key from core data

I like to fetch all objects of entity primary key. How I should implement it? How I retrieve ids from it? This code recommended: [NSManagedObject objectID].
0
votes
0answers
61 views

Cocoa application saving and fetching data from store data

I am very new to cocoa development. But i have worked with iOS programming before. So learning cocoa through the knowledge i know from iOS. I have done a employee login screen tutorial with 2 ...
0
votes
0answers
91 views

Unable to fetch entity from nsset by attribute on subsequent attempts

2 entities: User and Buildings. User has an attribute with type NSSet named buildings I want to retrieve the Buildings entity from NSSet by attribute guid. On the first run of the application, ...
0
votes
1answer
193 views

Core Data - One to Many relationship with object(one) and UIImages(many), storing and fetching

I aim to build a app with the object of: - Request(contains an unique id, customer name, phone, email, a brief summary of request info, a list of images(store in NSMutable Array) My Core data ...
0
votes
1answer
174 views

Fetch multiple entities with no relation between them

I have a core data model with multiple entities, each entity corresponds to a view controller were the user inserts information for each entity, for example: Tire(first Entity) - Type(first ...
0
votes
1answer
76 views

Core Data - Predicate get category

I'm currently working on an app that uses Core Data. The issue I'm dealing with is the fetch data with predicate, example shown below: [[self managedObjectContext] ...
0
votes
0answers
100 views

Data fetching really slow from webservice

I have the following webserivce. "club": { "staff": [ … ], "trainingen": [ … ], "team": [ { "name": "Baerts Lennert", "number": "0", ...
0
votes
1answer
128 views

Core Data Predicate: all Groups with Activity on an NSDate?

I have the following data model: Group(name, color, activities*) // one group may have many activities Activity(startTime, endTime, location, Group*) // startTime and endTime are NSDate, group is an ...
3
votes
2answers
131 views

Core Data returns a different object instance for the same NSManagedObject each time I fetch it. Why is this?

I have recently noticed that if I fetch a ManagedObject of which I can verify that there is only one in the model and which is not retained anywhere in my application, every time the fetch returns the ...
0
votes
1answer
106 views

To retrieve the values for only one property of an entity in Core Data of iOS

I have an entity called "Records", and it has an attribute named "amount" of NSDecimalNumber class. And of course "Record" has other attributes such as "name","date", and so on. Now I need to fetch ...
0
votes
1answer
59 views

Core data fetch using specific object rather than object attribute

I have been searching the forum and found some code on another users question which is 99% of what I am after. Code fragment below... Bookshop *bookshop = (Bookshop *) nsManagedObjectFromOwner; ...
0
votes
1answer
118 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 ...
1
vote
2answers
224 views

Core data fetch request to search in array

I have an object in core data which contains an NSArray filed. This is an array of categories (just strings). ANd i need to get all objects for certain category. So if an object has an array of ...
0
votes
1answer
123 views

Coredata accessing a member with of a relationship with KVC notation

I have two entities in coredata: Voice described like: NSString *code NSString *description and Movement described like: NSDate *date NSString *notes Voice *voice I need to write down ...
2
votes
1answer
417 views

CoreData Fetching Entities

I have a pretty basic question. If I have two entities with a relation between them (lets say entityOne has a to-many relationship to entityTwo). When I fetch entityOne, does it automatically fetch ...
0
votes
1answer
315 views

core data simple Fetch

Im using coredata to check the content of an entity, but still remembering how to go about to do it, PFIWIAppDelegate* delegate = (PFIWIAppDelegate*)[[UIApplication sharedApplication] delegate]; ...
0
votes
1answer
1k views

ios and coredata: NSPredicate does not work on fetch request

I have the following class #import <Foundation/Foundation.h> #import <CoreData/CoreData.h> @interface Bankdaten : NSManagedObject @property (nonatomic, retain) NSString * blz; ...
0
votes
1answer
452 views

How to filter NSDate from a Core-Data Entity using NSPredicate

I've got a Core Data Entity with a time stamp (NSDate) and I need to fetch records from the last n days. How could I do that? Thanks.
1
vote
1answer
183 views

Core Data Saving Attributes Of Entities

This question is about Core Data. I created a Entity called TV with three attributes called name, price and size. I also created a subclass of NSMutableObject with TV.h and TV.m files. I imported ...
7
votes
2answers
418 views

iPhone CoreData: Sort with umlauts

I have an app that fetches data (a list of countries) from an sqlite database. The countries are in German and contain umlauts, for example Österreich. I want to fetch those countries sorted by name ...
0
votes
1answer
140 views

Add ability to set nil for a relationship core-data

I have two entity with a many-to-one relationship. For example Employee <<---> Shop. When I create a new employee, I can choose a shop for it. I fetch all the available shops and then I ...
0
votes
1answer
303 views

SQL Request in Core Data

I know how to write the request I need in SQL but can't find a way to implement it using Core Data, or if I find a solution it would be ugly and messy, using 20+ lines of code... My request is SELECT ...
3
votes
2answers
405 views

iPhone core data - fetched managed objects not being released on device (fine on simulator)

I'm currently struggling with a core data issue with my app that defies (my) logic. I'm sure I'm doing something wrong but can't see what. I am doing a basic executeFetchRequest on my core data ...
0
votes
2answers
162 views

conditional fetch

I am having trouble fetching a row with specific conditions. I have an Entity called UserAccounts that it contains four attributes: userName, passWord, userFullName, userLevel. For login, I have to ...
0
votes
1answer
107 views

CoreData: two level fetchRequest on addition

I have a Core Data that stores Movies and Actors. I get the list of movies through json. Each Movie has a cast(Actor, role) So I have Movie, Actor, ActorRole entity. When i receive the list of ...
1
vote
1answer
744 views

In a Core Data entity, how do I use a source entity's attribute in its fetched property's predicate?

I am using the visual editor for creating a Core Data model. I can't figure out how to set a fetched property's predicate so that it uses the source entity's attributes in the predicate. For example, ...
0
votes
1answer
319 views

Core Data - can I store a calculated value as a persistent attribute?

Background I have a calculated value stored in a transient attribute. Every time my app starts up, the transient needs to be updated. Startup time is really slow (i.e. 10-15 seconds) Instruments ...
0
votes
0answers
261 views

Not all records fetched in Core Data

I have a strange problem. I'm using Core Data to hold a shop list data. Also I'm using webservice to update the data from internet. At the end of the updating function I call Core Data fetch to ...
2
votes
1answer
437 views

ExecuteFetchRequest intermittently throwing exception with same parameters. “not key value coding-compliant for the key”

EDIT Thanks to Matt's post I now understand that I should not be trying to access 'started' as an array. However, if that is the case, I would like to know why this code appears to be working in ...
2
votes
2answers
1k views

Fetch Specific Number of Random Rows from CoreData

I'm using the code below to Fetch a queried set of all rows using CoreData matching the search criteria: itemType = 1. But what I need to do is to Fetch a specific number of Random rows from the data ...
0
votes
1answer
158 views

iPhone CoreData fetch from delegate?

I've got a program which is working and uses Core Data for storage. However, I'm not entirely sure if I should be keeping my fetch/update methods exclusively to the app delegate? One example is for ...
0
votes
1answer
190 views

In Core Data, how do I access a specific attribute of every managed object (instance) of a given entity?

This is the Core Data object model I am working with (I am a new user, so I can't post pictures directly): http://i965.photobucket.com/albums/ae134/spindler77/Screenshot2010-07-26at112231AM.png All ...
1
vote
3answers
488 views

iPhone CoreData Queries

I'm new at using CoreData and I'm trying to understand how to perform a query on a table. I can use a fetch request to pull all of the records from a table, but I'm looking for a subset. Is there an ...
1
vote
2answers
779 views

Core Data (iPhone)- Limiting the fetch results across a relationship

I have recently been looking at Core Data for the iPhone and I have one query which I have not been able to find an answer to in the literature. Lets imagine that I have a User model object with a ...
0
votes
1answer
309 views

iPhone dev: how do you print results from a Core Data fetchRequest?

I've added the following to the AppDelegate in the Core Data Recipes example, but I don't get any printed result in the Console...any ideas? #pragma mark - #pragma mark TESTING RETRIEVAL OF RECIPE ...
0
votes
1answer
670 views

iphone fetchRequest sub entities?

If i fetch data from "parent" and assign it to a fetchresultscontroller, i still have to call [parent.images allObjects] in my cellForRowAtIndexPath to get to the child data. Is this a normal thing ...
0
votes
2answers
173 views

iphone tabbar where to load data?

I have two tabbar items(views) that use the same data, whats the best solution for getting the data? Make two fetch request for the same data in each view controller. Make one fetch request in ...
2
votes
2answers
1k views

Is there a way to use functions in NSPredicate predicateWithFormat:

I have store with entities that have coords (x, y, z). I want to fetch them by using predicate like @"sqrt(x*x + y*y + z*z) < distance". Is there any way to do this? I've tried to do thi with ...
17
votes
1answer
8k views

Core Data: Query objectIDs in a predicate?

I am fetching a set of objects from a Core Data persistent store using a fetch request and a predicate. My current predicate simply checks whether an attribute is >= a certain value. This all works ...