In my universal application I am receiving a video list from a server. I create a folder structure out of this information and display it in a split view controller. So in the end there are folders that can either contain subfolders or videos. The user should be able to stream and in some cases download the video.
Now to my question: How should I handle the file download if the user accesses another video or folder? Should I keep it running in the background or is it better to pause the download? What would be the way to go?
Thanks in advance