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
- SWIFT
- Observable
- combine
- HIG
- ios
- swift documentation
- UICollectionView
- 애니메이션
- 스위프트
- clean architecture
- UITextView
- uitableview
- swiftUI
- 리팩토링
- Xcode
- Protocol
- tableView
- 클린 코드
- Clean Code
- MVVM
- Human interface guide
- collectionview
- ribs
- rxswift
- map
- 리펙터링
- uiscrollview
- 리펙토링
- Refactoring
- RxCocoa
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] enumerated() 함수 본문
개념
- array값에 enumerated()함수를 사용하면, (index, value) 튜플형식으로 구현된 리스트형이 리턴
- 예제) for문과 사용
let arr = ["one", "two", "three"]
print(arr.enumerated()) // EnumeratedSequence<Array<String>>(_base: ["one", "two", "three"])
for (index, number) in arr.enumerated() {
print("\(index), \(number)")
}
/*
0, one
1, two
2, three
*/
'iOS 기본 (swift)' 카테고리의 다른 글
[iOS - swift] @discardableResult (0) | 2021.02.19 |
---|---|
[iOS - swift] 번들과 패키지(Bundle, package), Framework 개념 (0) | 2021.02.12 |
[iOS - swift] HitTest 개념 (first responder, responder chain) (0) | 2021.02.09 |
[iOS - swift] semantic, 버튼안의 내용 정렬 (0) | 2021.02.06 |
[iOS - swift] AppDelegate 참조 방법 (0) | 2021.01.31 |
Comments