Sephiroth87 / ODRefreshControl

A pull down to refresh control like the one in Apple's iOS6 Mail App
MIT License
2.14k stars 385 forks source link

I would like to be able to put the refresh control AT THE BOTTOM of the scrollview (and trigger the refresh when scrolling down) #26

Closed altimac closed 12 years ago

altimac commented 12 years ago

Hi,

My tableview is something like Twitter app: scroll at the top to get fresh, new tweets scroll at the bottom to get older tweets. By default Twitter.app does not store your zillions of old tweets. When you scroll down, it triggers a request to Twitter and I would like the refresh control to do the exact same behavior as the scroll to top.

Thanks

Sephiroth87 commented 12 years ago

What you are asking for is basically a different kind of control, because you don't have to pull it, but just scroll until is visible. Also, because it's a table view, the easiset way would be using a cell or a footerView, since a control like mine goues outside the bounds, it can't go inside...

altimac commented 12 years ago

Well, I mentioned Twitter app to get the idea, but it's behaviour is not exactly what I expect : I would like the control to be outside of the scrollView. I want the user to be forced to pull up once he scrolled at the bottom. Let me show you this short movie since I've modified another famous opensource PullView to fit my needs (but honestly yours is much better in terms of code :) )

In my opinion, the behaviour of your control at the top is exactly what I need but at the bottom :)

Thanks for your interest

On 3 sept. 2012, at 10:59, Fabio Ritrovato wrote:

What you are asking for is basically a different kind of control, because you don't have to pull it, but just scroll until is visible. Also, because it's a table view, the easiset way would be using a cell or a footerView, since a control like mine goues outside the bounds, it can't go inside...

— Reply to this email directly or view it on GitHub.