[Swift] enumerated() 메소드
for문을 돌리다보면 index가 필요할 때가 있습니다. 이럴 때 Swift 에서 제공하는 메소드 enumerated() 를 사용하면 되는데요!! 오늘은 enumerated 메소드에 대해 공부해 보려고 해요 ! 공식문서 (n, x)와 같이 튜플 형태로된 쌍을 return 한다고 합니다. n은 0부터 연이어 시작되는 int 형식 x는 각 요소 별로 차례대로 시작 쉽게말해 (index, value) 라고 생각하시면 돼요! 예제를 보겠습니다 for (index, value) in "Swift".enumerated() { print("\(index): \(value)") } // 0: S // 1: w // 2: i // 3: f // 4: t "Swift" 라는 문자열을 하나씩 뜯어 print 해본 결과 입니..
iOS
2022. 5. 8. 00:22
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Swift 알고리즘
- ios
- Swift Leetcode
- Swift 프로그래머스
- RTCCameraVideoCapturer
- 2023년 회고
- swift protocol
- Combine: Asynchronous Programming with Swift
- iOS error
- Swift final
- swift 고차함수
- Swift 내림차순
- RIBs tutorial
- Swift
- Swift Error Handling
- Swift 프로퍼티
- Class
- swift reduce
- 원티드 프리온보딩
- CS 네트워크
- Swift inout
- Swift ModernRIBs
- removeLast()
- Swift joined
- Swift RIBs
- swift (programmers)
- swift programmers
- Swift init
- Swift joined()
- swift property
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함