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
- Subject
- SwiftUI
- GCD
- observable
- swift 5.9
- Tuist Swift
- 네트워크 통신
- ios database
- combinecocoa
- SeSAC
- swift
- swift database
- swift 6
- uitableviewdiffabledatasource
- Combine
- JSON
- swift db
- KeyPath
- Subscribe
- Swift Tuist
- Firebase Analytics
- xcode
- arc
- realm
- 카카오뱅크 ios
- Tuist
- ios
- ribs
- Firebase
- RxSwift
Archives
- Today
- Total
천원의 개발
stride(form: to: by:) 본문
import Foundation
for i in stride(from: 5, to: 0, by: -1){
print(i) // 5 4 3 2 1 출력
}
'Swift 코딩테스트 준비' 카테고리의 다른 글
swift Dictionary 정렬하기 (0) | 2022.05.30 |
---|---|
swift outerLoop 사용법 (0) | 2022.05.29 |
uppercased, lowercased (0) | 2022.05.18 |
Swift forEach 정리 (0) | 2022.05.15 |
Swift enumerated정리 (0) | 2022.05.15 |