views:

1022

answers:

2

I am trying to find an example of placing an element above the Table View outside the normal scrollable region. How would I do this? An example would be what the Tweetie 2 app for the iPhone does to refresh tweets.

Sample code would be extremely helpful.

+11  A: 

I did find the answer to my own question, for anyone who is interested.

EGOTableViewPullRefresh

I tried this solution and it works great! It is almost identical to the Tweetie Pull Down refresh.

Daniel
I spent a little bit of time on EGOTableViewPullRefresh today and moved the main code into a UITableViewController subclass, it might be easier for some people to implement. http://github.com/jessedc/EGOTableViewPullRefresh
Jessedc