[Swift] 안전하게 배열 조회 (feat: indices)
오늘은 안전하게 배열을 조회하는 방법에 대해 알아 보려고 합니다. 아래와 같이 배열을 조회하다 엉뚱한 index에 접근하게 되면, 이런 에러를 많이 보실겁니다. let arr = [1, 2, 3] for index in 0...10 { print(arr[index]) // Fatal error: Index out of range } Fatal error: Index out of range Array(배열)의 경우에는 index를 접근해서 가져오는 값이 Optional이 아니라 guard를 쓸 수도 없어 index가 유효하지 않을 경우 꼼짝없이 앱이 다운되어 버립니다. 이런 오류를 방지하기 위해 extension을 이용해 아래와 같은 코드를 적용해줍니다. extension Array { subscript ..
iOS
2022. 9. 5. 00:28
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- swift 고차함수
- swift (programmers)
- ios
- Swift inout
- Swift ModernRIBs
- Swift Error Handling
- swift property
- RIBs tutorial
- Swift Leetcode
- Swift 프로퍼티
- Swift 내림차순
- swift protocol
- Combine: Asynchronous Programming with Swift
- Swift joined
- Swift 프로그래머스
- iOS error
- Swift init
- Class
- Swift 알고리즘
- Swift
- 원티드 프리온보딩
- RTCCameraVideoCapturer
- 2023년 회고
- Swift RIBs
- removeLast()
- Swift final
- swift programmers
- Swift joined()
- swift reduce
- CS 네트워크
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함