Reputation: 389
I am making an app that will load stories from rss feed and store them locally in Documents folder, so they would be available offline. My question is: How can i detect new items so i could update the existing stories list.
Upvotes: 0
Views: 218
Reputation: 50697
You would need to re-query the feeds. Either add a "Refresh" button which loads new data, or you can have a timer execute a reloading method every few minutes or whatever you require.
Upvotes: 2