Home  »  Swift Source  »  Swift RSS Reader

Swift RSS Reader

Posted on 15 Sep 2015

Swift RSS Reader

RSS Reader demo application build using Swift 2, Xcode 7, and iOS 9.

Swift based RSS Reader that loads rss feed as an xml from remote server and parse it using NSXMLParser. Once parsing done, it loads data into UITableView i.e. shows title and date. When clicked on title it goes to details page where it will browse post url within UIWebView. This is sample rss reader application you can use as a base for any RSS Reader project and expand it. You can use it free for either personal or commercial use.

It consist functionality below:
– Fetching rss feed as xml from remote server.
– Parsing xml using NSXMLParser.
– Convert xml into swift based array object.
– Listing records within UITableView.
– When clicked on title, it shows details page.
– Details page will load post url within UIWebView.

Technology used
– Table View Controller UITableView.
– Web view UIWebView.
– NSXMLParser library for xml data parsing.
– Simple and Clean interface.
– Build with Xcode storyboard.
– Adaptive layout for major screen size support.
– Build using Swift 2, iOS 9, Xcode 7 and NSXMLParser.

Platform:
– Swift 2
– iOS 9
– Xcode 7
– NSXMLParser

Supported Device
iPhone 4s, 5, 5s, 5c, 6, 6 Plus, 6s, 6s Plus, all iPad having iOS 8.4, iOS 9

You can download source form GitHub profile.

Go to Top