Core Data is Apple's object-persistence framework for Cocoa and Cocoa Touch for managing model objects of a MVC (model-view-controller) design.
0
votes
0answers
3 views
How to populate an email body from UITableView data?
I have a registration type form in a static cell UITableView, and when the user presses the "submit" button, I would like the information in the cells to be sent as an email to a specific email ...
0
votes
0answers
15 views
Merging Changes between NSManagedObjectContexts (Multithreaded)
I have a problem/crash merging the data of different NSManagedObjectContexts (iOS 6.1, Xcode 4.6).
Most of the time the error that rises is the following:
CoreData: error: Serious application error. ...
1
vote
0answers
22 views
OCMock: stub a @dynamic property
I'm trying to add unit tests to an existing iOS application, using among others OCMock.
In this application, we have a bunch of CoreData entities and generated classes. These classes obviously ...
0
votes
2answers
29 views
RestKit: mapping JSON array of strings
Given the following JSON:
{
"someKey":"someValue",
"otherKey":"otherValue",
"features":[
"feature1",
"feature2",
"feature3"
]
}
I am mapping this JSON into ...
1
vote
0answers
24 views
Core Data GROUP BY
Trying to do a simple GROUP BY in Core Data, but no succes still. Starting point was here (Matt Connolly's Blog post of about a year ago and looked all over SO as well.
I simply want to group by a ...
0
votes
1answer
22 views
Update table view from background thread?
I am trying to update table view from Core data like this:
dispatch_queue_t request_queue = dispatch_queue_create("com.myqueue.qu", NULL);
dispatch_async(request_queue, ^{
...
1
vote
0answers
21 views
Exception when calling insertInManagedObjectContext:
I am creating a Reddit client for iOS for learning purposes. I am using CoreData, which I set up by following the CoreData Basics NSScreencast and I used Mogenerator to generate the model files.
I ...
0
votes
1answer
15 views
Setting up a CoreData regular expression predicate for a comma-separated list
I'm beating my head against a wall trying to get a regular expression function to work with a CoreData fetch. I have an attribute named maps on an NSManagedObject subclass that I'm trying to filter ...
0
votes
2answers
39 views
How to share Core Data between multiple users?
I am trying to build a simple shared database app for iOS (specifically iPhone for now). The app would let multiple unrelated users on multiple devices add entries to and remove entries from a shared ...
1
vote
0answers
29 views
Stuck with Core Data object graph Handling
I'm having an object graph which contains several entities. i'm facing a situation where one entity can change several times but i need a way to revert it to the original state. Using some kind of ...
-1
votes
1answer
50 views
Possible to return an object into a completion block?
I work with Core data and I want to call a function for returning an object. This object is completed in this function with AFNetworking into a completion block. I want to know if it's possible to ...
0
votes
1answer
35 views
Xcode Core-Data to-many relationship: addObject method error
I have the following core-data structure:
I am trying to add Vocabulary objects to the Group class.
My attempts at doing this with the [Group addObject: VocabularyObject] method have
come to no ...
2
votes
1answer
20 views
Divergent model versions in CoreData
I'm working on a major update of an iOS application. Let's say that we have two branches, develop contains what's currently on the App Store and feature/new_version the one with the major update.
...
0
votes
2answers
39 views
Can't set property to NSManagedObject
I'm new using Core Data.
I have the class Chat (subclass of NSManagedObject) and I need to create new objects with it.
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
...
2
votes
1answer
33 views
How do sibling NSManagedObjectContexts interact?
If I have 3 NSManagedObjectContexts.
A. is the root context.
B. is a background saving context that generates NSManagedObjects after parsing a JSON
C. is a child context that is used in a ...
0
votes
3answers
59 views
Displaying Coredata in UITableView
I'm trying to create a UITable view to display a datasource saved through core data. I would like each row to be named after one of the attributes (in my case the name of the song). I have ...
0
votes
1answer
16 views
Get NSManagedObjectId when saving object
How does one retrieve the NSManagedObjectID when saving an object to Core-Data?
I have a series of objects to save to Core-Data and I need to have each ones objectID as I am saving on another thread.
...
3
votes
0answers
30 views
CoreData ordered relationships - batch unfaulting using NSFetchRequest
Background - Batch unfaulting:
NSFetchRequest allows batch unfault - for example, use a query of 1000 results, it would bring all as faults, then it would unfault X objects at a time (i.e. index 0-20, ...
0
votes
2answers
32 views
Entities within Entities in Core Data - Xcode
I am using Core Data to store information in an iPhone application I am building.
I intend to store vocabulary objects within deck objects, so any deck object can have multiple vocabulary objects.
...
-1
votes
2answers
34 views
UITableView with sections powered by core data
I have the following json file
{
items = ({“text1” = “lorem ipsum”;},
{“text2” = “lorem ipsum”;});
id = 0;
title = “item0”;
},
{
items = ({“text1” = “lorem ipsum”;},
...
0
votes
1answer
17 views
**UPDATED** Why is my image not showing in my UIWebView popover?
I have an iPad app (XCode 4.6, iOS 6.2, CoreData, ARC and Storyboards). In the CoreData store, I have an image.
I have written the image to the tmp directory on the iPad. This is the code:
// ...
0
votes
0answers
27 views
Deleting won't nullify until save : is it true?
My situation : I have complex (24 entities, many relationships and many ordered to-many relationships) model in Core Data.
Now let's say, I have an entity PlayList and an entity Song, and in ...
0
votes
1answer
18 views
AFIncrementalStore with AFRestClient > Overriding resourceidentifier in my AFRestClient subclass doesn't work for me
My HTTPClient is an AFRESTClient subclass and I am using AFIncrementalStore for Core data.
My response is having a unique identifier as "content_id" for the entity. I have overridden
...
0
votes
0answers
17 views
Default timestamp attribute in coredata?
I want to know when a certain object was added to CoreData.
Is there a default timestamp or lastModified attribute in CoreData that I can access? If yes, how can I do that.
0
votes
1answer
20 views
How do I access another table's data using a predicate?
I have a iPad app (XCode4.6, iOS 6.2, ARC and Storyboards). I have a CoreData store which looks like this:
I need to access both tables given the key from the AppointmentsInfo table. Core Data ...
0
votes
1answer
29 views
Add an detail view to core data application
I am creating a detail view for application which is populated by Core Data. I have used Core Data to pre-populate the uitables as shown in Ray Wenderlichs tutorial. Unfortunatley he stops short of ...
0
votes
2answers
25 views
Delete object from Core Data if deleted from the feed
Consider the following correlation between dictionary objects in a feed and sorted entities in core data:
Feed CoreData
---- --------
A A
B B
C C
D D
As I'm enumerating the feed, ...
3
votes
1answer
45 views
iOS 6 What is the standard way to deal with background saving of managed objects (in 2013)?
Last year I used RestKit 0.10 to seamlessly download and save core data objects in background. However, when I tried to use restkit in 2013, I noticed that they have taken out the ActiveRecord ...
0
votes
1answer
16 views
NSFetchedResultsController delegate not called for API listener
If the code assigns a delegate to the NSFetchedResultsController as follows:
-(id)initWithFetchedResultsController:(NSFetchedResultsController*)fetchedResultsController
{
self = [super init];
...
0
votes
0answers
43 views
best object model for core data framework ios sdk
I want to design the Object graph for the following record. Which is the best design practice?How many entities should I create and what about the relationships between them?
UserID, Email, UserTag, ...
0
votes
1answer
21 views
Sequence of regenerate data by iCloud transaction logs
My app is using core data with iCloud integration. Let's say, initially, I created 5 objects separately. So, iCloud received 5 transaction logs. Next, I delete all objects at once. So, iCloud ...
2
votes
1answer
41 views
Core-Data Relationships
In my application there are N number of Users. Each user can have N number of Categories. Each category can have N number of Books.
I have created following Entities BookMetadata, Users, Categories
...
0
votes
0answers
32 views
Why Core Data can't guess inverse relationships
Let's take an example, we have these 2 objects Person & Car.
A Car is owned by a Person (let's say it's required) so basically the tables will be like:
Car Person
- id ┌─► - ...
0
votes
1answer
34 views
Background fetch on iOS and handling the returned data
I have a DataManager class that is responsible for fetching data and handing it over to the DatabaseManager, which in-turn will insert it into core data.
The method that exposes itself to the ...
1
vote
1answer
54 views
Unacceptable type of value for attribute with int value
I work with core data and I try to assign an int value (id) from WS to core data attribute (Integer 32) . The attribute is an NSNumber and when I code it :
NSNumber *v = [responseMembers ...
0
votes
0answers
26 views
Comparing core data models from archive files
I have an app that is in the App Store. We first launched v1.0 and have since had an update accepted as v1.1. The App uses Core Data and those who update experience a crash because the Core Data model ...
0
votes
1answer
31 views
Using a single Core Data model in multiple projects
I have a set of related projects that will all use an identical Core Data model. One OS X app for entering the data, which will be exported to another OS X app that will act as a server, and an iOS ...
0
votes
1answer
44 views
Setup Core Data relationship in ordering app
I currently have the following relationship set up for my ordering app.
Product <<- Cart
That's working as it should, the product gets added to the cart and so on. When the user has pushed ...
0
votes
0answers
33 views
Fastest way to find an NSManagedObject in an NSSet
I have 2 NSSets with NSManagedObjects, the objects for each set are fetched in different threads, meaning some have a matching objectID, but the objects themselves are different. Now I want to remove ...
0
votes
2answers
19 views
Excel data to be inserted into a coredata model
I have an app that has some data ( static ) that needs to be shipped out with the app. The client gave me this data in Excel(over 300 rows), now I created a model for this in coredata, I was wondering ...
2
votes
1answer
35 views
Is it possible to bind a `NSTextfield` to only one particular entry in a NSArray or NSSet/ Relationship
Is it possible to bind a NSTextfield to only one particular entry in a NSArray or NSSet/ Relationship.
I can see the possibility of binding to an NSArrayController using the Control Key of ...
0
votes
2answers
55 views
Core Data Combined with FMDB on iOS
I like Core Data and have enjoyed how easy it makes simple database transactions. But I also have several complex queries that I need to do, and I fear that Core Data isn't going to make it easy to ...
0
votes
1answer
27 views
Restkit removing items from core data
I seem to be having an issue with removing items from Core Data using RestKit. I make a call to get some MovingObjects based on an lat and lng, via restkit. They get stored in CD. When I want make ...
0
votes
0answers
35 views
Using Core Data in iOS to display files
I am attempting to develop an iOS application. The application is similar to a typical Bible applications where there would be many data files, displayed one after the other. These files should be ...
0
votes
0answers
20 views
CoreDataTableViewController and UIRefreshControl
I'm using the CoreDataTableViewController [.h][.m] for a table which has a Core Data data source. I'm also refreshing this table with a UIRefreshControl:
rootController ...
0
votes
0answers
26 views
Invalidating locally cached data from an API in Core Data
In an app I'm building, I'm using Core Data to cache remote content from an API for offline viewing. This all works pretty well except for one big issue: if a record on the server is deleted there's ...
0
votes
1answer
29 views
CoreData: save changes only from one thread
I use CoreData from two threads with separate NSManagedObjectContext for each thread and a shared NSPersistentStoreCoordinator, as it's recommended in this guide. My goal is to commit only changes ...
0
votes
0answers
24 views
fetch coredata into tableview
I have saved my coredata and now I am trying to fetch it in a tableview class. when I click a button, a label gets saved into core data. WHen I try to fetch it, nothing shows on my cells. I know I ...
0
votes
0answers
48 views
NSManagedObjectContextObjectsDidChangeNotification infinite loop
See this code:
[[NSNotificationCenter defaultCenter] addObserverForName:NSManagedObjectContextObjectsDidChangeNotification
...
0
votes
0answers
14 views
NSPersistentStoreCoordinator addPersistentStoreWithType:configuration:URL:options:error use clarification
I apologize if this information exists somewhere but I've not been able to find it.
I seek clarification of Apple's doc for NSPersistentStoreCoordinator. The doc for ...

