我需要添加循环进度视图,显示下载进度和其他多任务完成状态,并希望显示100%完成并在完成所有任务后隐藏进度视图。对于Eg。
func downloadAndProcessImages(imagesArray: [URL]){
downloadimages()
resizeImages()
addToDB()
}
func downloadimage(){
for image in imagesArray{
saveImaege()
}
}
func addToDB(){
// db tasks
}
So where to increment the count / progress of the progressview , when you have multiple tasks ?