Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terminatorover/rgcoredatastack2
RGCoreDataStack
https://github.com/terminatorover/rgcoredatastack2
Last synced: 22 days ago
JSON representation
RGCoreDataStack
- Host: GitHub
- URL: https://github.com/terminatorover/rgcoredatastack2
- Owner: terminatorover
- Created: 2014-08-15T01:10:08.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-15T01:20:26.000Z (over 10 years ago)
- Last Synced: 2023-08-03T15:20:57.167Z (over 1 year ago)
- Language: Objective-C
- Homepage:
- Size: 152 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
RGCoreDataStack
===============A nice easy to use/yet powerful core data stack.
The default Core Data stack provided by apple is kinda messy in a couple of ways.
1) it's created in the app delegate! this means that the user has to pass the managed object context form one view controller to another. I've created a singleton to sovle that issue.
2) in the core data stack that apple provides any saves are done on the main thread! slowing your app down ! RGCoreDataStack let's you do your saves on a bacgkround thread and then they will appear on your mean thread for your main moc to use to feed your UI.