Two days ago, I talked about how to emulate Tweetie’s swipable table view cells, and another nice feature of Tweetie is pulling down past the first row in a table view to initiate a refresh of the data source. Two different options to emulate this behavior are out there.
The first one is EGOTableViewPullRefresh, a standalone implementation created for UITableViewControllers by enormego. Jessie Collis then forked it to simplify the implementation. He created a new UITableViewController subclass, leaving only two methods for developers to support, one for the action that the pull down initiates and one when that action is done.
If you’re already using the three20 framework, it includes a TTTableViewDragRefreshDelegate as part of its TTTableViewController. See the TTTwitter sample app for how it’s implemented.
Update: Leah Culver has an even simpler solution called PullToRefresh.







Hi,
Here is a step by step tutorial how to implement pull down to refresh..
http://www.altinkonline.nl/tutorials/xcode/uitableview/pull-down-to-refresh/