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 |
Tags
- modern concurrency
- 오블완
- SWIFT
- ios
- WWDC
- 티스토리챌린지
- APNS
- modern concurrency deep dive
- 야곰 # 야곰아카데미커리어스타터캠프 #iOS개발자 # 부트캠프
Archives
- Today
- Total
Geon
Modern Concurrency Deep Dive(6) 본문
iOS developer essential skills/Modern Concurency
Modern Concurrency Deep Dive(6)
jgkim1008 2024. 11. 19. 23:27Delegate with Continuation
- continuation을 변수로 설정한후, Delegate에서 continuation을 resume하면 비동기를 실행시킬수 있다.
- refactor -> addAsyncWrapper 설정하면 콜백방식에서 continuation으로 자동으로 바꿔준다.
- refactor -> alternative 콜백방식으로 사용할수 있게 해준다.
final class MockModule: NSObject, CLLocationManagerDelegate {
private var continuation: LCContinuation?
func loactionManager(didUpdateLocations locations: [CLLocation]) {
continuation?.resume(returning: location)
continuation = nil
}
}
final class MockViewModel: ObservableObject {
do {
let location: CLLocation = try await withCheckedThrowingContinuation { [weak self] contination in
self?.locationService.start()
await MainActor.run {
// UI 업데이트
}
} catch {
}
}
'iOS developer essential skills > Modern Concurency' 카테고리의 다른 글
Modern Concurrency Deep Dive(8) (0) | 2024.11.21 |
---|---|
Modern Concurrency Deep Dive(7) (0) | 2024.11.20 |
Modern Concurrency Deep Dive(5) (0) | 2024.11.18 |
Modern Concurrency Deep Dive(4) (0) | 2024.11.17 |
Modern Concurrency Deep Dive(3) (0) | 2024.11.16 |