- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
}
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"BlackListCell" forIndexPath:indexPath];
// 选中后没有任何点击效果 适用于展示类条目
cell.selectionStyle = UITableViewCellSelectionStyleNone;
//去调无用分割线
tableView.tableFooterView = [[UIView alloc]init];
}