简化ViewController代码量
ESSeparatorInset https://github.com/EnjoySR/ESSeparatorInset
一行代码移除 UITableView 分割线左边的默认的间距
用法:
#import "UIViewController+ESSeparatorInset.h" //分割线顶格 [self setSeparatorInsetZeroWithTableView:self.tableView]; //或 自定义间距 [self setSeparatorInsetWithTableView:self.tableView inset:UIEdgeInsetsMake(0, 8, 0, 8)];
tableView 空白视图
UIView *emptyView = [[UIView alloc] initWithFrame:self.tableView.frame]; self.tableView.tableHeaderView = emptyView; self.tableView.userInteractionEnabled = NO; //When you have data you just remove the header and reenable user interaction: self.tableView.tableHeaderView = nil; self.tableView.userInteractionEnabled = YES;
时间: 2024-10-31 21:07:15