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
- 애니메이션
- 리팩토링
- collectionview
- swift documentation
- map
- 리펙터링
- Clean Code
- Xcode
- Refactoring
- ribs
- uiscrollview
- 리펙토링
- RxCocoa
- tableView
- UICollectionView
- UITextView
- rxswift
- 클린 코드
- Protocol
- ios
- uitableview
- Observable
- clean architecture
- SWIFT
- MVVM
- 스위프트
- HIG
- Human interface guide
- swiftUI
- combine
Archives
- Today
- Total
목록Swift 기본 연산자 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 기본 연산자 - zip, merge, merging
zip array에서 사용하는 결합 연산자 두 원소가 항상 같이 짝짓는 연산자 var array1 = [1,2,3,4,5] var array2 = ["a", "b", "c", "d", "e"] zip(array1, array2) .forEach { value1, value2 in print(value1, value2) } /* 1 a 2 b 3 c 4 d 5 e */ 만약 둘 중 하나가 없다면 짝짓지 못하므로 값 x var array1 = [1,2,3,4,5] var array2 = ["a"] zip(array1, array2) .forEach { value1, value2 in print(value1, value2) } /* 1 a */ merge, merging dictionary에서 사용하는 병합 ..
iOS 응용 (swift)
2022. 12. 30. 22:44