I download mp3 using NSData dataWithContentsOfURL: url. This takes some time, and while the file is loading, the application freezes. I want to work well, and the ideal would like to show the boot process, but cannot find methods for this.
This is in the UIViewController, and I made my first attempt by placing it in the UIActivityIndicatorView and starting to rotate it before starting to load, and then stop its rotation, but nothing appears.
So my question is really, please, can someone tell me what is the best way to handle this? Many thanks
source
share