EGOTableViewPullRefresh icon indicating copy to clipboard operation
EGOTableViewPullRefresh copied to clipboard

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

Open olegam opened this issue 16 years ago • 0 comments

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.

olegam avatar Nov 25 '09 11:11 olegam