views:

61

answers:

3

I've seen this in other apps too, so I'm wondering whether there's some canned functionality I'm missing. Is there an interface for the "pull down to refresh" action? If not, what's that called so I can Google it?

+4  A: 

No. You should look at EGOTableViewPullRefresh on GitHub.

esqew
Thank you for your submission. The other answer was slightly faster. Both were great.
editor
+3  A: 

It is not built-in functionality but you can grab the open source version from the guys who originally implemented it :-)

http://github.com/enormego/EGOTableViewPullRefresh

St3fan
Just make sure to give them credit and leave the attribution/license at the top of their source files :)
raidfive
+1  A: 

Just to round out the answers - you can make a table view in IB, put it in a view, and then change the type to be something like an EGOTableViewPullRefresh table. Then you just set an outlet for it and implement the delegate methods in the view controller.

In fact I find it very handy to use table views as a subview of a view in a normal view controller. The UITableViewController only provides a handful of convenience mechanisms.

Kendall Helmstetter Gelner