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
- uiscrollview
- rxswift
- 애니메이션
- RxCocoa
- HIG
- 클린 코드
- UITextView
- Observable
- clean architecture
- Clean Code
- uitableview
- map
- 리펙터링
- SWIFT
- Refactoring
- 스위프트
- Human interface guide
- combine
- tableView
- ribs
- swift documentation
- UICollectionView
- swiftUI
- Protocol
- collectionview
- 리팩토링
- Xcode
- 리펙토링
- MVVM
- ios
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] for, stride, Range 본문
stride 키워드 주의
- stride(from:to:by:) to를 포함하지 않음
- stride(from:through:by) through를 포함
for i in stride(from: 0, to: 5, by: 1) {
print(i) // 0, 1, 2, 3, 4
}
for i in stride(from: 0, through: 5, by: 1) {
print(i) // 0, 1, 2, 3, 4, 5
}
// cf) Closed range
for i in 0...5 {
print(i) // 0, 1, 2, 3, 4, 5
}
Range
- 제네릭이며 '반개방'상태(A..<B)의 간격을 표현하는 제네릭 구조체
- Range를 사용할 때 Comparable 프로토콜을 준수하는 타입이면 무엇이든 가능
- 객체 생성
let rangeInstance = 0.0 ..< 10.0 // Range<Double> 타입
- 속성
print(rangeInstance) // 0.0..<10.0
print(rangeInstance.contains(1.5)) // true
print(rangeInstance.lowerBound) // 0.0
print(rangeInstance.upperBound) // 10.0
'iOS 기본 (swift)' 카테고리의 다른 글
[iOS - swift] TimeZone 지역 값 (0) | 2021.03.08 |
---|---|
[iOS - swift] KVO(Key-Value Observing) (0) | 2021.03.07 |
[iOS - swift] 고차함수map(map, flatMap, compactMap), filter, reduce (0) | 2021.02.28 |
[iOS - swift] Result 타입 (성공, 실패) (0) | 2021.02.26 |
[iOS - swift] property 구분 방법 (stored property, computed property, lazy property) (0) | 2021.02.25 |
Comments