- (void)viewDidLoad {
[super viewDidLoad];
//加载时隐藏tableView 分割线
[_tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
//隐藏footerView
tableView.tableFooterView=[[UIView alloc]initWithFrame:CGRectZero];
//显示分割线 有几条数据显示几个
[tableView setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine];
//加载storbord上的tableViewCell
tableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
//手松开点击效果就会取消掉
[tableView deselectRowAtIndexPath:indexPath animated:NO];
}