tags:

views:

50

answers:

2

I am working on an iPhone application called IYoga-Classic which will provide high quality videos for Yogs instructions. I want to add a download option to the videos so that the users can download their desired positions even when they are offline? Is there a way to do this?

A: 

Sure! Make a button, and in its action, download the content. Later, when the user goes to view it, see if it's already downloaded and show it if it is.

Jim Puls
A: 

I would make the process as easy as possible for users - when they choose to watch a video you could include an option to keep for viewing offline - you could also ask them after then have finished watching the video if they would like to store the video on their device for faster viewing next time etc.

As for the ways you can do this - the best way is to just cache the data and store it locally in a cache directory you can create.

Grouchal