Core Data is Apple's object-persistence framework for Cocoa and Cocoa Touch. In an application that uses Core Data, objects managed by Core Data are the model section, following the model/view/controller paradigm.

learn more… | top users | synonyms (1)

76
votes
6answers
26k views

Core Data vs SQLite 3

I am already quite familiar with relational databases and have used SQLite (and other databases) in the past. However, Core Data has a certain allure, so I am considering spending some time to learn ...
60
votes
3answers
7k views

Xcode 4, Core Data Model Version - Set Current Version

I'm confused about how to perform the following function in Xcode 4 to set the model to use after creating a versioned model. Design > Data Model > Set Current Version
56
votes
5answers
26k views

iphone Core Data Unresolved error while saving

I am getting a strange error message from the core data when trying to save but the problem that the error is not reproducible ( it appears at different times when doing different tasks) the error ...
44
votes
5answers
7k views

How to sync CoreData and a REST web service asynchronously and the same time properly propagate any REST errors into the UI

Hey, I'm working on the model layer for our app here. Some of the requirements are like this: 1. It should work on iPhone OS 3.0+. 2. The source of our data is a RESTful Rails application. 3. We ...
43
votes
7answers
13k views

What do I have to do to get Core Data to automatically migrate models?

I have read in the documentation about automatic /lightweight migration for Core Data models - but am having problems in the reality of implementing it. As I understand it the application should ...
33
votes
4answers
8k views

How to Sync iPhone Core Data with web server, and then push to other devices?

I have been working on a method to sync core data stored in an iPhone application between multiple devices, such as an iPad or a Mac. There are not many (if any at all) sync frameworks for use with ...
31
votes
2answers
7k views

Best practice? - Array/Dictionary as a Core Data Entity Attribute

I am new to Core Data. I have noticed that collection types are not available as attribute types and would like to know what the most efficient way is of storing array/dictionary type data as an ...
31
votes
10answers
26k views

Delete/Reset all entries in Core Data?

Do you know of any way to delete all of the entries stored in Core Data? My schema should stay the same; I just want to reset it to blank. Edit I'm looking to do this programmatically so that a ...
30
votes
3answers
12k views

Core Data: Quickest way to delete all instances of an entity

I'm using Core Data to locally persist results from a Web Services call. The web service returns the full object model for, let's say, "Cars" - could be about 2000 of them (and I can't make the Web ...
25
votes
3answers
861 views

Does XCode Floor “Min Value” and “Max Value” for Core Data Decimal Attributes?

Background I, like scores of programmers before me, am working on an application that deals with money. I'm relatively new to Cocoa programming, but after reading through the manuals I decided that I ...
23
votes
2answers
1k views

What does Apple mean when they say that a NSManagedObjectContext is owned by the thread or queue that created it?

It seems that in November, Apple updated both the NSManagedObjectContext Class Reference and the Core Data Programming Guide documents to explicitly bless serial GCD Dispatch Queues and ...
23
votes
5answers
11k views

JSON and Core Data on the iPhone

I have a core data object graph (consisting of two entities linked by a to-many relationship). I was curious, as a relatively inexperienced iPhone developer, whether anyone could recommend an ...
22
votes
5answers
10k views

Adding Core Data to existing iPhone project

I'd like to add core data to an existing iPhone project, but I still get a lot of compile errors: NSManagedObjectContext undeclared Expected specifier-qualifier-list before 'NSManagedObjectModel' ...
21
votes
6answers
5k views

Where to place the “Core Data Stack” in a Cocoa/Cocoa Touch application

In the iPhone Core Data Template, Apple places the Core Data Stack in the App Delegate. My initial inclination however is to move this code into it's own class whose responsibility is to handle the ...
20
votes
2answers
10k views

NSPredicate: filtering objects by day of NSDate property

I have a Core Data model with an NSDate property. I want to filter the database by day. I assume the solution will involve an NSPredicate, but I'm not sure how to put it all together. I know how to ...
20
votes
3answers
2k views

Best way to implement Enums with Core Data

What is the best way to bind Core Data entities to enum values so that I am able to assign a type property to the entity? In other words, I have an entity called Item with an itemType property that I ...
20
votes
4answers
11k views

How to create classes after creating Core Data model in Xcode for iPhone

I have created my Model, Entities, Properties and Relationships in Xcode. How are the classes for my Entities created? Do I have to manually create them?
17
votes
4answers
813 views

Problems with NSOrderedSet

On my Lion app, I have this data model: The relationship subitems inside Item is ordered. Xcode 4.1 (build 4B110) has created for me the file Item.h, Item.m, SubItem.h and SubItem.h. Here is the ...
17
votes
2answers
1k views

iPhone Core Data “Production” Error Handling

I've seen in the example code supplied by Apple references to how you should handle Core Data errors. I.e: NSError *error = nil; if (![context save:&error]) { /* Replace this implementation with ...
16
votes
3answers
7k views

How to filter NSFetchedResultsController (CoreData) with UISearchDisplayController/UISearchBar

I'm trying to implement search code in my CoreData-based iPhone app. I'm not sure how to proceed. The app already has an NSFetchedResultsController with a predicate to retrieve the data for the ...
16
votes
1answer
6k views

“Collection was mutated while being enumerated” on executeFetchRequest

I'm stuck on a problem for hours now and having read everything about this on stackoverflow (and apply every advices found), I'm now officially in need for help. ;o) Here is the context : In my ...
16
votes
3answers
7k views

Core Data - Storing Images (iPhone)

I have an application where I allow the user to add an image for their account. I wish to know how to store an image (obtained from the camera or photo library) using Core Data, as I may offer a ...
16
votes
2answers
9k views

Cocoa Core Data efficient way to count entities!

i read much about Core Data.. but what is an efficient way to make a count over an Entity-Type (like SQL can do with SELECT count(1) ...). Now i just solved this task with selecting all with ...
16
votes
3answers
14k views

Core Data vs. SQLite for SQL experienced developers

We're beginning development of an in-house app in the iPhone Enterprise developer program. Since it's close to OS 3.0, we're reconsidering our original design of using SQLite and using Core Data ...
15
votes
3answers
554 views

CoreData and threads / GCD

I'm a beginner with GCD and CoreData, and I need your help to use CoreData with CGD, so that the UI is not locked while I add 40.000 records to CoreData. I know that CD is not thread-safe, so I have ...
15
votes
3answers
6k views

How to use the first character as a section name

I'm using Core Data for a table view, and I'd like to use the first letter of each of my results as the section header (so I can get the section index on the side). Is there a way to do this with the ...
15
votes
3answers
12k views

NSFetchedResultsController with sections created by first letter of a string

Learning Core Data on the iPhone... There seems to be few examples on Core Data tables with sections. The CoreDataBooks example uses sections, but they're generated from full strings within the ...
14
votes
1answer
483 views

Matt Gallagher's UITableView (Revisited) + NSFetchedResultsController

If you look at Matt Gallagher's Cocoa With Love blog, he has a brilliant discussion (with sample code) on a fresh a beautiful retake on UITableView ... In the post, he talks about it's great many ...
14
votes
3answers
2k views

What's better way to build NSPredicate with to-many deep relationships?

I have three entities: EntityA, EntityB and EntityC connected with to-many relationships. See schema for details: For getting all instance of EntityA which depend from EntityB.name I use the ...
14
votes
3answers
18k views

Core-Data iPhone: could not locate an NSManagedObjectModel

I am using Apple's CoreDataBooks sample project as a learning aid for core data. I modified the app so that when the app loads I show a menu page first - not the Books tableview ...
14
votes
2answers
1k views

Core Data Migration Across Multiple Version Upgrades

I have an iPhone app that uses Core Data. I did an update and used Lightweight Migration to go from V1 to V2 of my MOM (Managed Object Model). This worked perfectly. What happens when I want to go ...
14
votes
5answers
9k views

Use CoreData or SQLite on iPhone?

Since CoreData has become available for the iPhone in OS 3.0, is it meant to be the answer to data persistence and replace all need for direct SQLite? What reasons exist to still use SQLite? What are ...
14
votes
3answers
8k views

Core Data Primary Key

This may seem stupid, but I still couldn't figure out how to mark a attribute as a primary key in the xcdatamodel file. My persistent storage is sqlite file. Can anyone help me? In that case, how can ...
13
votes
5answers
1k views

Undoing Core Data insertions that are performed off the main thread

I'm working on some code that uses an NSOperation to import data. I'd like for the user to be able to undo the NSManagedObject instances that are created during the import operation. From what I can ...
13
votes
3answers
4k views

Implementation of “Automatic Lightweight Migration” for Core Data (iPhone)

I would like to make my app able to do an automatic lightweight migration when I add new attributes to my core data model. In the guide from Apple this is the only info on the subject I could find: ...
13
votes
3answers
2k views

Core Data and Core Location

I have a Core Data database with latitude and longitude properties. Is there a way to use Core Location's getDistanceFrom: method to find the five nearest locations to a CLLocation obtained from the ...
12
votes
5answers
827 views

Example or explanation of Core Data Migration with multiple passes?

My iPhone app needs to migrate its core data store, and some of the databases are quite large. Apple's documentation suggests using "multiple passes" to migrate data to reduce memory use. However, the ...
12
votes
1answer
1k views

Graphical Predicate Builder in Xcode 4 with Core Data

I am using Xcode 4, and I can't find a way to work with the graphical predicate builder. Is it still there? How do I use it? Where is the documentation on this? Thanks
12
votes
6answers
3k views

Xcode4: Different code generated for custom core data managed objects

Now that Xcode4 is publicly available I'm moving this question out of Apple's secret dev forum: Can someone explain why the code generated in the following procedure is different than in Xcode3? Is ...
12
votes
3answers
1k views

How can I tell whether an `NSManagedObject` has been deleted?

I have an NSManagedObject that has been deleted, and the context containing that managed object has been saved. I understand that isDeleted returns YES if Core Data will ask the persistent store to ...
12
votes
2answers
958 views

How can I find out if the iPhone user currently has a passcode set and encryption enabled?

I'm writing an iPhone application that requires its data to be encrypted. I've learned how to turn on encryption for files by setting the NSFileProtectionComplete attribute. I also know how to check ...
12
votes
5answers
2k views

Is Core Data useful for readonly data too?

I'm creating an iPhone App and am wondering whether Core Data is better for readonly data than a SQLite database. It feels like the SQLite DB is the better choice, is that right? Can I even pre-fill ...
12
votes
2answers
4k views

Core Data vs Sqlite and performance

I am wondering if anyone has any real world numbers on performance differences between an old sqlite application which has been converted to Core Data in the 3.0 SDK. I suspect that under the hood ...
11
votes
6answers
12k views

Rearranging UITableView with Core Data

I'm trying to find a code sample that shows how to handle moving/rearranging cells in a tableView when the cell uses a fetchedResultsController (i.e. in conjunction with Core Data). I'm getting the ...
10
votes
2answers
788 views

Crash when adding persistent store (iCloud enabled) in app delegate

Using iCloud on iOS 5.0.1, I'm occasionally getting errors pertaining to the persistent store. I'm going to continue updating this with new information as I find it through experimenting, but so far ...
10
votes
2answers
491 views

How to delete an old/unused Data Model Version in xCode 4

How can I delete an old Data Model in xCode 4? The option is disabled on the menu. (the models I want to delete have not been released to the public - they are interim development models) EDIT: This ...
10
votes
1answer
562 views

How should I be associating Core Data entities for use with RestKit?

I have two Core Data entities (Client and UserFile) that I have successfully set up a relationship between. I have created classes for both entities, and made them subclasses of RKManagedObject. ...
10
votes
3answers
302 views

Is it OK to use multiple NSUndoManagers with one Core-Data managedObjectContext?

//Edit: Really, nobody has any suggestions or thoughts on this? Have I asked the question wrongly somehow?// My iPhone app has a single managedObjectContext with a moderately complicated data model. ...
10
votes
1answer
401 views

Multiple Pass Core Data Migration In Chunks With iOS

I'm trying to migrate an iPhone/iPad sqlite store of about 11Mb. It has around thirty different entities, all quite heavily interrelated. On a 3GS, it takes quite some time. Even a lightweight ...
10
votes
2answers
680 views

Core Data: avoiding retain cycles in to-many relationships

I'm still learning my way through iOS development and working with Core Data and have just come across retain cycles. It is my understanding from reading the Core Data Programming Guide that after ...

1 2 3 4 5 121