Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Modern Core Data
Search
Elvis Nuñez
December 10, 2016
Technology
0
54
Modern Core Data
Slides for
https://www.meetup.com/Apple-Developers-Club-Ahmedabad/events/235818880/
Elvis Nuñez
December 10, 2016
Tweet
Share
More Decks by Elvis Nuñez
See All by Elvis Nuñez
Building a thriving apps culture
3lvis
0
120
Make your first iPhone app Workshop
3lvis
0
32
AR, ARKit and Meeting Room Finder
3lvis
0
110
iOS at FINN
3lvis
0
56
Slack meets Hyper
3lvis
0
87
Other Decks in Technology
See All in Technology
LangChain Interrupt & LangChain Ambassadors meetingレポート
os1ma
2
160
KubeCon + CloudNativeCon Japan 2025 Recap by CA
ponkio_o
PRO
0
230
Wasm元年
askua
0
160
2025-06-26_Lightning_Talk_for_Lightning_Talks
_hashimo2
2
100
KubeCon + CloudNativeCon Japan 2025 Recap Opening & Choose Your Own Adventureシリーズまとめ
mmmatsuda
0
210
CursorによるPMO業務の代替 / Automating PMO Tasks with Cursor
motoyoshi_kakaku
1
530
「良さそう」と「とても良い」の間には 「良さそうだがホンマか」がたくさんある / 2025.07.01 LLM品質Night
smiyawaki0820
1
410
生成AIで小説を書くためにプロンプトの制約や原則について学ぶ / prompt-engineering-for-ai-fiction
nwiizo
4
2.9k
米国国防総省のDevSecOpsライフサイクルをAWSのセキュリティサービスとOSSで実現
syoshie
2
1.2k
整頓のジレンマとの戦い〜Tidy First?で振り返る事業とキャリアの歩み〜/Fighting the tidiness dilemma〜Business and Career Milestones Reflected on in Tidy First?〜
bitkey
0
120
Model Mondays S2E03: SLMs & Reasoning
nitya
0
220
生まれ変わった AWS Security Hub (Preview) を紹介 #reInforce_osaka / reInforce New Security Hub
masahirokawahara
0
300
Featured
See All Featured
[RailsConf 2023] Rails as a piece of cake
palkan
55
5.6k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
Statistics for Hackers
jakevdp
799
220k
Practical Orchestrator
shlominoach
188
11k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
The Invisible Side of Design
smashingmag
300
51k
The Straight Up "How To Draw Better" Workshop
denniskardys
234
140k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
657
60k
Site-Speed That Sticks
csswizardry
10
670
The Language of Interfaces
destraynor
158
25k
How to train your dragon (web standard)
notwaldorf
94
6.1k
Building Applications with DynamoDB
mza
95
6.5k
Transcript
Modern Core Data Elvis Nuñez @3lvis
Agenda Core Concepts Sync Demo
None
Core Concepts
Core Data Modeler
Core Data Modeler
NSManagedObject The base of all Core Data model objects. Not
thread safe. Can be generated by Xcode.
NSManagedObject import CoreData @objc(User) class User: NSManagedObject { @NSManaged public
var id: Int32 @NSManaged public var name: String? @NSManaged public var username: String? @NSManaged public var email: String? @NSManaged public var phone: String? @NSManaged public var website: String? }
NSPersistentContainer The modern Core Data Stack, configures and abstracts the
required objects to use Core Data. - NSManagedObjectModel - NSPersistentStoreCoordinator - NSManagedObjectContext
Sync
Sync [ { "id": 1, "name": "Leanne Graham", "username": "Bret",
"email": "
[email protected]
", "phone": "1-770-736-8031 x56442", "website": "hildegard.org" } ]
Demo
End Elvis Nuñez @3lvis https://github.com/SyncDB/SimpleDemo https://github.com/SyncDB/Sync