2017年1月5日
一.如何实现微信列表(tableView)分割线效果:除最后一个cell的分割线不偏移,其它cell分割线都偏移15
(默认分割线和自定义分割线,原理其实类似。本例由于用的是点三方库文件,所以是默认分割线)<我们一贯保留不到万不得已不修改第三方库代码的原则
>)
效果如下:
法1(推荐):直接在tableview将要显示的接口(不建议在画cell的接口地方修改,可能会有多种cell类型判断)
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row == [self.recentSessions count] - 1) {
//如果是最后一个,不偏移
if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
[cell setLayoutMargins:UIEdgeInsetsZero];
}
if ([cell respondsToSelector:@selector(setSeparatorInset:)]){
[cell setSeparatorInset:UIEdgeInsetsZero];
}
}else{
//其他 还原(其实ios8 默认会有15的分割线)
if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
[cell setLayoutMargins:UIEdgeInsetsMake(0, 15, 0, 0)];
}
if ([cell respondsToSelector:@selector(setSeparatorInset:)]){
[cell setSeparatorInset:UIEdgeInsetsMake(0, 15, 0, 0)];
}
}
}
法2:通过移除最后一个cell的分割线,添加底部视图实现。【自定义分割线的cell可以用如下方法(系统默认的还没试成功)】
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
return 0.5;
}
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
UIView *bgv = [[UIView alloc]initWithFrame:CGRectMake(0, 0, HHBWIDTH, 0.5)];
bgv.backgroundColor = [UIColor lightGrayColor];
return bgv;
}
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row == [self.recentSessions count] - 1) {
//如果是最后一个,
//自定义cell隐藏分割线
[self hideSeparator];
}else{
//其他 还原(其实ios8 默认会有15的分割线,)http://stackoverflow.com/questions/25770119/ios-8-uitableview-separator-inset-0-not-working
[self resetSeparator];
}
}
- (void)hideSeparator
{}
- (void)resetSeparator
{}
如果您发现本文对你有所帮助,如果您认为其他人也可能受益,请把它分享出去。