My button code below download a file from a URL, I need to link it with a Progress View to show the Downloading Progress.
@IBAction func btnStream(sender: U
Check this tutorial. It's in Objective-C, but it will be easy to convert to Swift.
The principle is to implement some NSURLConnectionDataDelegate
functions on your VC :
Hope it helps, and don't hesitate to comment if you have some troubles converting Obj-C to Swift.