Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Protocol
- 리펙터링
- Refactoring
- UICollectionView
- ribs
- Observable
- 애니메이션
- 스위프트
- combine
- rxswift
- ios
- 리펙토링
- HIG
- UITextView
- uitableview
- collectionview
- SWIFT
- swiftUI
- clean architecture
- MVVM
- tableView
- Clean Code
- uiscrollview
- 클린 코드
- 리팩토링
- Xcode
- RxCocoa
- Human interface guide
- map
- swift documentation
Archives
- Today
- Total
목록dictinoary (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] dictionary nil 초기화 시 주의사항
Dictionary 초기화 시 주의사항 dictionary: key - value 쌍으로 데이터를 저장할 수 있는 형태 dictionary 값을 초기화하는 방법에 대해서 명확히 알고 있어야 사용할때 혼동이 생기지 않음 초기화 방법 key-value 모두 날리고 싶은 경우 dictinoary 대괄호 안에 key값을 넣고, 오른쪽에 nil을 대입 var dict: [Int: String?] = [1: "1", 2: "2", 3: "3"] dict[1] = nil // [2: Optional("2"), 3: Optional("3")] or removeValue(forKey:) 사용 var dict: [Int: String?] = [1: "1", 2: "2", 3: "3"] dict.removeValue(for..
iOS 응용 (swift)
2023. 12. 23. 22:02