Search code examples
iosxcodecore-datastoragesettings-bundle

IOS | Storing blog posts for reading later


I'm rather new to IOS but i managed to get my app to display a list of blog posts from RSS feeds. I would like to give my users the ability to save the blog posts for reading later when they might not have an internet connection.

I will do this through a setting in the settings bundle. I do not however know what the best way is to store blog posts within my app. I am already using core data, would this be a good option for it?


Solution

  • If you are already using a persistence option then use it for everything, don't mix and match.

    If you are already using Core Data then yes it makes sense to keep using it throughout the application for consistency and maintainability.