#Coredata #Tutorial #Swift5 #XCode11 #Generic #KingfisherFramework #Cocoapods
Welcome to my channel "Let's Build It", with Imran Malik.
Lesson 1 - • Lesson 1 - Core Data: Saving to the Device...
Lesson 2 - • Lesson 2 - Core Data: Store API response i...
In today's lesson, we are going to learn how to show images fetched from core data directly to the tableView cell. We are going to use Kingfisher cocoapods for downloading and showing image from the URL.
It will be Asyncronous process and will be very easy to understand.
We have created Generic class for our CRUD operations, that functions can be reused with any other Coredata entity and you don't have to write whole functions again and again in each class and for each entity.
Core Data is an Apple framework that allows you to store user data to the device and ensure that it can load saved data that persists even after app termination. With Core Data, you can structure your data models with both code and a visual representation, save complex objects, and fetch those complex objects. Learning how to persist data to the device is very import for most applications. Know how to save data can be a valuable tool to add to your arsenal