enormego / EGOTableViewPullRefresh

A similar control to the pull down to refresh control created by atebits in Tweetie 2.
http://developers.enormego.com
3.26k stars 878 forks source link

Last cell in table is only visible when dragging and holding the table #1

Open olegam opened 14 years ago

olegam commented 14 years ago

I found that las last cell(s) of my table was not shown within the region of the table that snaps to the visible area. I solved that by setting a footer view that matches the pullDownView:

In initWithFrame of EGOTableViewPullRefresh:

UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 90.0f)]; self.tableFooterView=footer; [footer release];

Thanks for a nice piece of code.