标签:style blog io color os sp div log bs
// 为 tableView 添加footview,去掉多余的横线。 - (void)setTableFooterView:(UITableView *)tb { if (!tb) { return; } UIView *view = [[UIView alloc] init]; view.backgroundColor = [UIColor whiteColor]; [tb setTableFooterView:view]; }
调用:
[self setTableFooterView:_addressTableView];
标签:style blog io color os sp div log bs
原文地址:http://www.cnblogs.com/ziyeSky/p/4150352.html