Search code examples
iosxcoderssnsxmlparser

Load RSS from multiple feeds in iOS


I want to start to create an app that allows the user to read feeds from multiple sites. The user can add a new feed and all the news from all stored feeds will be presented in a tableview. Thus, i wanted to ask if it is possible to a way to load the content from multiple xml feeds into one feed and order it by date of publish?

What would be the best approach?

Thank you very much!


Solution

  • Grouping all feeds into one is usually a bad call if you want to have reasonable latency as grouping usually means caching of each individual feeds before they're grouped.