You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -76,10 +76,6 @@ Use the Table of Contents to practice and test your knowledge. It doesn't show t
76
76
77
77
## Database
78
78
79
-
#### What is NSFetchRequest?
80
-
81
-
NSFetchRequest is the class responsible for fetching from Core Data. Fetch requests can be used to fetch a set of objects meeting a certain criteria, individual values and more. ([source](https://medium.com/ios-os-x-development/50-ios-interview-questions-and-answers-part-2-45f952230b9f))
82
-
83
79
#### What is Core Data?
84
80
85
81
Core Data is a framework that is used to manage the model layer objects. It has the ability to persist object graphs to a persistent store.
@@ -92,6 +88,10 @@ NSUserDefault is typically used to store small bits of data (settings, preferenc
92
88
93
89
First, managed object context is an instance of NSManagedObjectContext. It is the central object in the Core Data stack. It is used to create and fetch managed objects, and to manage undo and redo operations. Although it is allowed to have multiple managed object contexts, there is typically at most one managed object to represent any given record in a persistent store.
94
90
91
+
#### What is NSFetchRequest?
92
+
93
+
NSFetchRequest is the class responsible for fetching from Core Data. Fetch requests can be used to fetch a set of objects meeting a certain criteria, individual values and more. ([source](https://medium.com/ios-os-x-development/50-ios-interview-questions-and-answers-part-2-45f952230b9f))
0 commit comments