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
- RxCocoa
- SWIFT
- 애니메이션
- Xcode
- collectionview
- ribs
- swiftUI
- clean architecture
- uitableview
- UITextView
- tableView
- rxswift
- combine
- Refactoring
- 리팩토링
- ios
- 스위프트
- HIG
- map
- Observable
- Human interface guide
- swift documentation
- uiscrollview
- UICollectionView
- 리펙터링
- Protocol
- MVVM
- Clean Code
- 클린 코드
- 리펙토링
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] ~= 연산자 (범위 연산자) 본문
범위 연산자 `~=`
- {Range 값} ~= {하나의 값}
- 왼쪽에서 정의한 범위 값 안에 오른쪽의 값이 속하면 true, 아니면 false 반환
- 왼쪽에는 범위, 오른쪽에 하나의 값이 와야하고 반대가 되면 컴파일 에러 발생
사용 방법
- 0이상 10이하 표현: ~= 연산자 사용 안한 경우
let value = 3
if 0 <= value && value <= 10 {
print("0이상 10이하")
}
- 0이상 10이하 표현: ~= 연산자 사용
let value = 3
if 0...10 ~= value {
print(0이상 10이하)
}
- 0이상 10미만 표현
let value = 3
if 0..<10 ~= 3 {
print(0이상 10미만)
}
'iOS 기본 (swift)' 카테고리의 다른 글
[iOS - swift] ARC, strong, unowned, weak (실무 관점) (0) | 2021.05.03 |
---|---|
[iOS - swift] weak var 사용방법 ('weak' must not be applied to non-class-bound) (0) | 2021.04.29 |
[iOS - swift] Argument Labels vs Parameter (0) | 2021.04.08 |
[iOS - swift] 타입 캐스팅 (업 캐스팅 vs 다운 캐스팅) (0) | 2021.04.08 |
[iOS - swift] remove at build time 옵션 LayoutConstraints 에러, Unable to simultaneously satisfy constraints (0) | 2021.04.08 |
Comments