일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 상호배제
- @state
- 알고리즘
- core data
- 100 days of SwiftUI
- Algorithm
- 비동기
- Codable
- struct
- 운영체제
- SwiftUI
- forEach
- Swift
- 앨런
- Linked List
- 동기화
- async
- 동시성
- 인프런
- 프로세스 스케줄링
- decode
- COLOR
- 데드락
- 오브젝트
- UserDefaults
- 가상 메모리
- scrollview
- deadlock
- Apple Developer Academy
- IOS
Archives
- Today
- Total
목록AppStorage (1)
기어가더라도 제대로
[SwiftUI-기초] Codable (with UserDefaults)
AppStorage 같은 경우엔 간단한 String, Int, Bool 등을 저장가능 복잡한 데이터 타입을 담기위해선 UserDefault 자체를 씀 struct User: Codable { let firstName: String let lastName: String } Codable 이라는 프로토콜을 채택하는데, 이것은 이런 의미를 가지고 잇다. 이런 인스턴스를 archiving 하기 -> Encode() unarchiving 해서 인스턴스화 하기 -> Decode() 즉, Codable == Encodable + Decodable 어쨌든 저장하기 위해서는 plane 한 Text 로 저장이 가능한데 인스턴스의 경우 plane 한 텍스트로 만드는 것을 Encode, Text 에서 인스턴스화 하는 것을 D..
SwiftUI - 기초
2022. 11. 6. 18:14