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 | 31 |
Tags
- clean architecture
- Clean Code
- HIG
- Observable
- Refactoring
- swiftUI
- SWIFT
- uiscrollview
- 리펙터링
- rxswift
- ribs
- Human interface guide
- collectionview
- 리펙토링
- swift documentation
- combine
- 리팩토링
- 애니메이션
- RxCocoa
- uitableview
- Xcode
- UITextView
- tableView
- UICollectionView
- 클린 코드
- MVVM
- map
- ios
- Protocol
- 스위프트
Archives
- Today
- Total
목록연산자 재정의 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift 공식 문서] 27. Advanced Operators (overflow 연산자, 연산자 정의)
Overflow Operator 단순히 +, -로 접근하면 overflow 런타임 에러 발생 overflow operator 추가: &+ 빼기: &- 곱셈: &* ex) Int16의 범위는 -32768 ~ 32767 var potentialOverflow = Int16.max print(potentialOverflow) // 32767 potentialOverflow = potentialOverflow &+ 1 print(potentialOverflow) // -32768 Operator method 연산자 재정의: static func로 정의 struct Vectror2D { var x = 0.0, y = 0.0 } extension Vectror2D { static func + (left: Vectr..
swift 공식 문서
2021. 7. 29. 23:45