앱의 콘텐츠나 데이터 자체를 저장/보관하는 특별한 객체를 무엇이라고 하는가?
Opened this issue · 2 comments
sustainable-git commented
앱의 콘텐츠나 데이터 자체를 저장/보관하는 특별한 객체를 무엇이라고 하는가?
sustainable-git commented
- iOS에서 persistence는 여러 방법으로 구현할 수 있다.
- UserDefaults
- AppStorage, SceneStorage
- Archiving
- NSCoder
- Codable
- File System
- Core Data
- Cloud Kit
- UIDocument
- UserDefaults
inuinseoul commented
앱의 콘텐츠나 데이터 자체를 저장하는 객체로 대표적인 것은
UserDefaults와 Core Data가 있습니다.
주로 간단한 설정은 UserDefaults에, 무거운 데이터는 Core Data에 넣습니다.