일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ribs
- combine
- swiftUI
- UITextView
- UICollectionView
- tableView
- Clean Code
- MVVM
- RxCocoa
- Observable
- swift documentation
- Xcode
- 스위프트
- uitableview
- Human interface guide
- ios
- collectionview
- clean architecture
- rxswift
- Protocol
- Refactoring
- uiscrollview
- 리펙터링
- 리팩토링
- 리펙토링
- 애니메이션
- SWIFT
- 클린 코드
- HIG
- map
- Today
- Total
목록timeout (2)
김종권의 iOS 앱 개발 알아가기
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..
1. Buffering Operators 1) share(replay:), share(replay:scope:) 과거의 이벤트들을 subscriber에게 emit - replay 파라미터 : 버퍼사이즈 (얼마만큼의 element를 새로운 subscriber에게 emit할 것인지 - scope 파라미터 : subscriber의 수가 1에서 0으로 될 때 다음 동작 .whileConnected : 공유되고 있던 stream의 cache삭제 .forever : stream의 cache를 삭제하지 않음 이밖의 메소드 - replay(_:) - replayAll() - multicast(_:) - publish() 2. Time-shifting operators 이벤트 emit에 delay를 시킬 수 있는 연산자..