1.与用户的交互的开启和关闭
tableView.userInteractionEnabled = NO;
2.TableView的Group样式中,默认的每个section都有sectionHeader和sectionFooter,只要调整这两个的大小就可以
实现section之前的间距扩大或缩小
tableView.sectionFooterHeight = 5;
tableView.contentInset = UIEdgeInsetsMake(5-35, 0, 0, 0);
tableView.sectionHeaderHeight = 0;
3.cell点击不变色
cell1.selectionStyle = UITableViewCellSelectionStyleNone;
4.两表之间的联动效果
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
_rightTableView.contentOffset = scrollView.contentOfset;
_leftTableView.contentOfset = scrollView.contentOffset;
}
5.设置tableview宽度为两个屏幕宽度,结果cell分割线显示不全.重写父类方法解决
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:
(NSIndexPath *)indexPat{
if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
[cell setLayoutMargins:UIEdgeInsetsZero];
}
if ([cell respondsToSelector:@selector(setSeparatorInset:)]){
[cell setSeparatorInset:UIEdgeInsetsZero];
}
}
6.去除tableview 右侧滚动条
_tableView.showsVerticalScrollIndicator = NO;
去掉分割线
_tableView.separatorStyle = UITableViewCellSeparatorStyleNone;