本文主要是介绍设置tableViewCell分割线上下去边线,中间缩进,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
无需自定义代码设置tableViewCell分割线上下去边线,中间缩进
//设置分割线上下去边线,顶头缩进15
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{UIEdgeInsets UIEgde = UIEdgeInsetsMake(0, 15, 0, 15);if (indexPath.section == self.items.count-1) {cell.preservesSuperviewLayoutMargins = NO;cell.layoutMargins = UIEdgeInsetsZero;cell.separatorInset = UIEdgeInsetsMake(0, __kScreenWidth, 0, 0);}else{[cell setSeparatorInset:UIEgde];}
}
这篇关于设置tableViewCell分割线上下去边线,中间缩进的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!