Open olegam opened 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.
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.