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
- Protocol
- tableView
- clean architecture
- UICollectionView
- uiscrollview
- ios
- Refactoring
- collectionview
- ribs
- MVVM
- map
- uitableview
- 리팩토링
- combine
- SWIFT
- 리펙토링
- 스위프트
- swiftUI
- Xcode
- swift documentation
- UITextView
- Human interface guide
- 리펙터링
- Observable
- rxswift
- Clean Code
- HIG
Archives
- Today
- Total
목록if #available (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift 공식 문서] 5. Control flow (흐름 제어)
For - in 루프 stride(from:to:by:) stride(from:through:by:): through 포함 While 루프 repeat - while: 조건을 고려하기 전 repeat블록을 부조건 한번 실행 repeat { } while 조건문 switch 문의 암시적 fall through case문을 여러개 사용하지 않고, 컴마로 구분하여 'or 조건' 사용 (주의: if문에서는 콤마가 'end 조건') let anotherCharacter: Character = "a" // 컴파일 에러 switch anotherCharacter { case "a": case "A": print("The letter A") default: print("Not the letter A") } // 정상 ..
swift 공식 문서
2021. 6. 21. 23:53