应用场景:例如搜索时候只有一条数据,其他空白cell分割线隐藏起来
UIView *view = [[UIView alloc] init];
[view setBackgroundColor:[UIColor clearColor]];
self.tableView.tableFooterView = view;
为了方便其他地方用,可以给tableView写分类
@interface UITableView (additions)
- (void)dx_hideTableEmptyDataSeparatorLine;
- (void)dx_scrollToTop;
@end
- (void)dx_hideTableEmptyDataSeparatorLine {
UIView *view = [[UIView alloc] init];
[view setBackgroundColor:[UIColor clearColor]];
self.tableFooterView = view;
}
// 多添加一个滚动到顶部的方法,方便用
- (void)dx_scrollToTop {
[self setContentOffset:CGPointZero animated:YES];
}