Update README.md

This commit is contained in:
Jungpyo Hong 2021-06-02 15:39:26 -05:00 committed by GitHub
parent 5265313e5c
commit a47616f545
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,6 +49,7 @@ Feel free to fork this repository and pull requests!!
- [UserDefaults](#UserDefaults) - [UserDefaults](#UserDefaults)
- [How to find documentDirectory](#How-to-find-documentDirectory) - [How to find documentDirectory](#How-to-find-documentDirectory)
- [Store Object](#Store-Object) - [Store Object](#Store-Object)
- [Keychain](#Keychain)
- [Core Data](#Core-Data) - [Core Data](#Core-Data)
- [Set Up Core Data](#Set-Up-Core-Data) - [Set Up Core Data](#Set-Up-Core-Data)
- [Core Data Usage](#Core-Data-Usage) - [Core Data Usage](#Core-Data-Usage)
@ -645,12 +646,15 @@ let defaults = UserDefaults.standard
## Store Object ## Store Object
There are two ways of store object in UserDefault [Store Object](https://stackoverflow.com/questions/29986957/save-custom-objects-into-nsuserdefaults)
###
**You are GOOD TO GO** 👏👏👏 **You are GOOD TO GO** 👏👏👏
## Keychain
[Keychain raywenderlich](https://www.raywenderlich.com/9240-keychain-services-api-tutorial-for-passwords-in-swift)
## Core Data ## Core Data
Use Core Data to save your applications permanent data for offline use, to cache temporary data, and to add undo functionality to your app on a single device. Use Core Data to save your applications permanent data for offline use, to cache temporary data, and to add undo functionality to your app on a single device.