InterviewSolution
Saved Bookmarks
| 1. |
What Is The Meaning Of Core Data? |
|
Answer» Core data is a COCOA framework that helps in managing object graphs and persistent storage. It saves MODEL OBJECTS to a persistent store and also helps to FETCH them. The MAIN motive of core data is the managed objects which are the instances of NSManagedObject. Core data is a Cocoa framework that helps in managing object graphs and persistent storage. It saves model objects to a persistent store and also helps to fetch them. The main motive of core data is the managed objects which are the instances of NSManagedObject. |
|