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
- 애니메이션
- uiscrollview
- 리펙토링
- RxCocoa
- HIG
- Protocol
- collectionview
- ribs
- swift documentation
- clean architecture
- Human interface guide
- uitableview
- rxswift
- UICollectionView
- combine
- Observable
- Xcode
- tableView
- UITextView
- 클린 코드
- Clean Code
- Refactoring
- swiftUI
- 스위프트
- map
- ios
- 리팩토링
- 리펙터링
- SWIFT
- MVVM
Archives
- Today
- Total
목록async를 순서대로 처리 방법 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 2. 타임아웃 처리 방법 - DispatchGroup 사용 (+ async 처리를 순서대로 처리 방법)
1. 타임아웃 처리 방법 - DispatghWorkItem 사용 2. 타임아웃 처리 방법 - DispatchGroup 사용 (+ async 처리를 순서대로 처리 방법) ()) { print("start task1", Thread.current) sleep(3) print("end task1", Thread.current) completion(1) } func task2(completion: (Int) -> ()) { print("start task2", Thread.current) sleep(5) print("end task2", Thread.current) completion(2) } let tasks = [task1, task2] var results = [Int]() DispatchGroup과 Di..
iOS 응용 (swift)
2023. 4. 6. 01:58