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
- RxCocoa
- 리펙터링
- rxswift
- tableView
- clean architecture
- swiftUI
- 클린 코드
- ribs
- swift documentation
- uiscrollview
- Clean Code
- Human interface guide
- 리팩토링
- UICollectionView
- MVVM
- Xcode
- Protocol
- HIG
- SWIFT
- map
- ios
- 리펙토링
- Refactoring
- Observable
- 애니메이션
- UITextView
- 스위프트
- uitableview
- combine
- collectionview
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 표현식을 이용한 조건문, 삼항 연산자, switch - enum 리펙터링 (Swift5.9) 본문
Refactoring (리펙토링)
[iOS - swift] 표현식을 이용한 조건문, 삼항 연산자, switch - enum 리펙터링 (Swift5.9)
jake-kim 2023. 11. 10. 01:51조건문 리펙터링
- Xcode15 이상, Swift5.9부터 조건문들을 모두 하나의 표현식으로 간주할 수 있으므로 더욱 간결하게 표현이 가능
if, else 리펙터링
- swift5.9 미만 버전에서는 if, else 분기문에 따라 값이 달라질 때 바로 위에 UIColor라는 타입만 명시하는 프로퍼티를 선언
let count = Int.random(in: 0...100)
let color: UIColor
if count % 2 == 0 {
color = .blue
} else {
color = .red
}
- 또는 closure를 사용하여 반환
let newColor = {
if count % 2 == 0 {
return UIColor.blue
} else {
return .red
}
}()
- 조건문을 사용할 때 closure없이 사용 가능하고 return키워드 생략도 가능
let simpleColor = if count % 2 == 0 { UIColor.blue }
else { UIColor.red }
switch문 리펙터링
- switch문도 조건문이기 때문에 간결하게 표현이 가능
리펙터링 전) 클로저 사용
enum NumberType {
case one
case two
case three
case other
}
// refactoring 전
let n = Int.random(in: 0...5)
let type = {
switch n {
case 1: return NumberType.one
case 2: return .two
case 3: return .three
default: return .other
}
}()
리펙터링 후) 클로저와 return 생략
let newType = switch n {
case 1: NumberType.one
case 2: NumberType.two
case 3: NumberType.three
default: NumberType.other
}
* 전체 코드: https://github.com/JK0369/o1a1
'Refactoring (리펙토링)' 카테고리의 다른 글
[iOS - swift] 튜플을 활용한 리펙터링 (tuple refactoring, 튜플 리턴) (2) | 2023.11.29 |
---|---|
[Refactoring] 메서드와 함수의 파라미터 리펙토링 (0) | 2023.11.19 |
[iOS - swift] 2. weak self 동작 이해하기 - 외부에 weak self 선언하고 클로저에서 사용하는 경우 (#캡처리스트 [weak self] 리펙토링) (0) | 2023.11.05 |
[iOS - swift] guard문 잘 사용하기 (#guard문 사용 시 주의사항, #이중부정, #2중부정) (0) | 2023.10.31 |
[iOS - swift] 복잡한 조건문 리펙토링 (if, else, else if, guard 문) (2) | 2023.10.27 |
Comments