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 |
Tags
- 리펙토링
- UICollectionView
- Human interface guide
- Refactoring
- map
- scrollview
- Xcode
- 리팩토링
- ios
- 클린 코드
- HIG
- MVVM
- combine
- SWIFT
- rxswift
- collectionview
- ribs
- Observable
- swiftUI
- 애니메이션
- uitableview
- UITextView
- uiscrollview
- 스위프트
- RxCocoa
- tableView
- swift documentation
- clean architecture
- Protocol
- Clean Code
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Dictionary에서 default값 설정 방법 (딕셔너리 디폴트 값) 본문
딕셔너리에서의 디폴트 값
- 딕셔너리 인스턴스의 value값에 특정 값을 추가하고 싶은 경우, key값이 존재하지 않을 여지가 있기 때문에 아래처럼 컴파일 에러가 발생
var dict = ["a": 1, "b": 2]
["a", "b", "c"]
.forEach { char in
dict[char] += 1 // Value of optional type 'Int?' must be unwrapped to a value of type 'Int'
}
- dict에 "c"키값을 새로 만들어서 1 값이 입력되게끔 하고 싶은 경우?
- 아래처럼 nil을 체크하여 구현이 가능하지만 번거로운 형태
["a", "b", "c"]
.forEach { char in
if dict[char] == nil {
dict[char] = 1
} else {
dict[char]! += 1
}
}
- 여기서 value부분에 default키워드를 사용하면 간략하게 표현이 가능
["a", "b", "c"]
.forEach { char in
dict[char, default: 0] += 1
}
print(dict) // ["a": 2, "b": 3, "c": 1]