Geon

Modern Concurrency Deep Dive(16) 본문

iOS developer essential skills/Modern Concurency

Modern Concurrency Deep Dive(16)

jgkim1008 2024. 12. 2. 23:16

Task 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
 
}