Reputation: 422
I created an RSS Reader from a blog. I am retrieving the articles of the blog and i am filling an uitableview with them in a navigation controller. Which is the best way refresh my tableview when i want and also to save RSS feed in my app in order to use it offline.
Upvotes: 0
Views: 133
Reputation: 2950
1) For the refreshing part you can use a refresh UIBarButtonItem
on the NavigationBar
or the pull-to-refresh
(Find good answers here). In my opinion I think using the UIBarButtonItem
is a bit old fashioned.
2) You can store the contents you get from your RSS feed in the app using CoreData. CoreData is a framework provided by Apple. Look up the documentation here.
Upvotes: 1