If you are IOS developer you can run into a problem when your app download a lot of image from URL maybe your app is crashed or you can't interact with the rest of the application, when I interviewed for a job a few months ago, I also got this question from my interviewer He assumed that there are 3 images from URL when user click on the update button all of them will be updated at the same time so let’s do it a demo to know what happens when your application run without multithreading Inside of my project I need some element into ViewController, As you can see we have 2 images and a button to update our image Inside of ViewController , we need to hook up all of them with @IBOutlet and @IBAction it should look like this As you can see when user click on the update button to download two images from URL, you can't interact with the rest of the application you can’t d...