I have the following sequence:
- Start MBProgressHUD spinner
- Download several images using NSConnectionURL and implemented connectionDidFinishLoading delegate to show the image
- Stop spinner after all images are downloaded and show the parent view that contains all the images
How should I implement the connectionDidFinishLoading: to determine whether all the images are downloaded so that I can stop the spinner?
Should I be tracking the number of downloads, but what about thread safety?
Or should I be looking at GCD?