The Situation:
Somewhere in my app I start downloading data from my server. Before downloading starts, I would like to update a UILabel to say @"Now Downloading...". And set it back to blank when downloading is over.
The Problem:
It seems like the download takes up all of the computers attention, and the UILabel never gets updated until the very end (at which downloading is already over) and so is set back to blank (or, never-visible in real time).
Question:
How can I SIMPLY update my UILabel to say "Now Downloading" just before the download?