I have UITableView where each cell has one UIImage and the image is being downloaded from an API using JSON.
I handled the initial images and data via Background Threading. However, as user scrolls down inside table view, images to other cells begins to download, so those cells requires some refreshing.
I thought about adding an ActivityIndicator inside UIImageView, so user will notice image is being downloaded.
Additional info, UIImageView is inside an UIStackView. I thought about isHidden method, could not implemented.
Thank you for your time.