Reputation: 870
I have an application which has video content (something like youtube) I want to make an offline mode in my app (no internet connection mode)
I will be happy to hear what is the best way to implement this kind of logic, I heard about Core Data is there some source code or an example you know about?
Upvotes: 2
Views: 430
Reputation: 33428
Your question is very generic. You should provide some details about your goal.
Core Data in this case could be a lot of work. Especially for its learning curve.
A simple solution could be to save videos on file systems and use plist files (or whatever you want) to contains the path (meta-informations) where videos are stored in.
Anyway, if you want to adopt Core Data, this will contain only meta-informations about videos. And not videos. As before they will be saved on disk. Maybe external storage functionality could be the right way to follow.
Upvotes: 4