美文网首页
iOS cell分隔线左顶头

iOS cell分隔线左顶头

作者: sergeant | 来源:发表于2019-07-05 10:30 被阅读0次

设置UITableView的这两个属性:

tableView.separatorInset = UIEdgeInsetsZero;
tableView.layoutMargins = UIEdgeInsetsZero;

兼容iOS 9等低版本系统cell也需要设置:

cell.separatorInset = UIEdgeInsetsZero;
cell.layoutMargins = UIEdgeInsetsZero;

相关文章

网友评论

      本文标题:iOS cell分隔线左顶头

      本文链接:https://www.haomeiwen.com/subject/ldlshctx.html