EGOTableViewPullRefresh
EGOTableViewPullRefresh copied to clipboard
Last cell in table is only visible when dragging and holding the table
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.