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
- ios
- APNS
- WWDC
- SWIFT
- 야곰 # 야곰아카데미커리어스타터캠프 #iOS개발자 # 부트캠프
- modern concurrency deep dive
- 티스토리챌린지
- 오블완
- modern concurrency
Archives
- Today
- Total
Geon
Modern Concurrency Deep Dive(16) 본문
iOS developer essential skills/Modern Concurency
Modern Concurrency Deep Dive(16)
jgkim1008 2024. 12. 2. 23:16Task Cancel
- cancel을 통한 지연로딩으로 인한 이미지 섞임을 처리 안해도 된다.
- cell이 안보여지면 네트워크 통신이 취소됨
- SwiftUI 에서는 onDisappear 와 onAppear에서 취소처리를 해주면 되지 않을까 생각됨(추후 실험 예정)
var thumbnailTasks: [IndexPath: Task<Void, Never>] = [:]
func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: indexPath) {
thumbnailTasks[indexPath] = task {
defer { thumbnailTasks[indexPath] = nil }
if let data = await fetchImageData(from: imageModel.url), let image = UIImage(data:data) {
await imageCell.updateCell(with: image)
}
}
}
func collectionView(_ collectionView: UICollectionView, didEndDisplaying cell: UICollectionViewCell, forItemAt indexPath: indexPath) {
thumbnailTasks[indexPath]?.cancel()
thumbnailTasks[indexPath] = nil
}
'iOS developer essential skills > Modern Concurency' 카테고리의 다른 글
Modern Concurrency Deep Dive(18) (1) | 2024.12.11 |
---|---|
Modern Concurrency Deep Dive(17) (0) | 2024.12.10 |
Modern Concurrency Deep Dive(15) (0) | 2024.11.28 |
Modern Concurrency Deep Dive(14) (0) | 2024.11.27 |
Modern Concurrency Deep Dive(13) (1) | 2024.11.26 |