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
- 리펙토링
- swift documentation
- 리팩토링
- Xcode
- Observable
- uiscrollview
- ios
- Human interface guide
- combine
- UITextView
- uitableview
- swiftUI
- rxswift
- Refactoring
- 스위프트
- SWIFT
- 클린 코드
- Protocol
- Clean Code
- RxCocoa
- map
- collectionview
- 리펙터링
- clean architecture
- ribs
- tableView
- 애니메이션
- MVVM
- UICollectionView
- HIG
Archives
- Today
- Total
목록딕셔너리 디폴트 값 (1)
김종권의 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 ..
iOS 응용 (swift)
2024. 5. 1. 01:57