Author
Released
10/17/2012- Understanding Core Data and object persistence frameworks
- Creating a Core Data project
- Exploring data modeling
- Creating entities, attributes, and relationships
- Creating managed objects
- Fetching in Core Data
- Implementing undo and redo support
- Creating a Core Data Cocoa app without code
- Responding to validation issues
- Converting store types
- Preloading default data
Skill Level Intermediate
Duration
Views
- [Voiceover] Hi, this is Simon Allardice, and welcome to Core Data for iOS and OS X. In this course, I'll begin by talking about what core data is, and how it can help us. We'll explore the vocabulary and the ideas of core data, terms like managed objects, predicates, and what these mean. But we'll quickly get hands on. That starts by modeling our data, using the tools and xcode to describe our applications in a way that Core Data understands, and enables us to easily save, or persist that information. And if we've saved it, we need to be able to retrieve it.
We'll see how to fetch, bring our data back, and tie it into a user interface. Beyond the most trivial of applications, Core Data is what you should be using to work with data in your iOS and Mac applications. It's an essential competency for an Apple developer. Let's get started.
Q: In the CoursesViewController.m file, I receive a message that the method dismissModalViewControllerAnimated is no longer supported by Apple. Is there a newer method to use?
A: You may have received the warning that a call to the dismissModalViewControllerAnimated: method is now deprecated.
This is a recently deprecated method, so the code _will_ continue to work using that call, but to remove the warning, change the code from:
[self dismissModalViewControllerAnimated:YES];
to the current recommended version:
[self dismissViewControllerAnimated:YES completion:nil];
It should take care of that message.
Related Courses
-
Cocoa Essential Training
with Simon Allardice5h 21m Beginner
-
Introduction
-
Welcome48s
-
What you need to know1m 45s
-
-
1. Getting Started
-
Learning Core Data5m 33s
-
Why use Core Data?6m 51s
-
Creating a Core Data project7m 15s
-
-
2. Modeling in Core Data
-
Creating entities4m 8s
-
Modeling relationships9m 21s
-
3. Saving in Core Data
-
Creating managed objects12m 46s
-
-
4. Fetching in Core Data
-
Using predicates9m 32s
-
5. Putting It Together: iOS
-
6. Putting It Together: Cocoa
-
7. Store Types and Model Changes
-
Converting store types5m 33s
-
Preloading default data6m 47s
-
Conclusion
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: Welcome