Skip to content

Commit 67bd7a5

Browse files
committed
Reordered nsfetchrequest question to be lower in Core data category
1 parent 6e7d27f commit 67bd7a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Use the Table of Contents to practice and test your knowledge. It doesn't show t
1111
## Table of Contents
1212

1313
- [Database](https://github.com/onthecodepath/iOS-Interview-Questions#core-data)
14-
- What is NSFetchRequest?
1514
- What is Core Data?
1615
- When would you use Core Data over NSUserDefault?
1716
- What is a managed object context?
17+
- What is NSFetchRequest?
1818
- [Debugging](https://github.com/onthecodepath/iOS-Interview-Questions#debugging)
1919
- What are some ways of debugging in iOS?
2020
- [Design Pattern](https://github.com/onthecodepath/iOS-Interview-Questions#design-patterns)
@@ -76,10 +76,6 @@ Use the Table of Contents to practice and test your knowledge. It doesn't show t
7676

7777
## Database
7878

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-
8379
#### What is Core Data?
8480

8581
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
9288

9389
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.
9490

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))
94+
9595
## Debugging
9696

9797
#### What are some ways of debugging in iOS?

0 commit comments

Comments
 (0)