IOS中 如何去除Tabview里面cell之间的下划线
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS中 如何去除Tabview里面cell之间的下划线相关的知识,希望对你有一定的参考价值。
您好,只需要设置TableView的separatorStyle属性为UITableViewCellSeparatorStyleNone即可去除下划线代码如下:
tableView.separatorStyle = UITableViewCellSeparatorStyleNone; 参考技术A 可以利用Tabview的separatorStyle属性来设置,选择其中的UITableViewCellSeparatorStyleNone 可去除cell之间的下划线。
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; 参考技术B tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
UIPickerView中间选中那个cell分割线如何去除
参考技术A 两种方法,第一种是在 Interface Builder 里面操作: 在 Interface Builder 中打开 storyboard 选中你要操作的 tableView 在右边的 Attributes Inspector 中,将 Separator 由 Default 改为 None 第二种是通过代码修改,在 viewDidLoad 中添加以上是关于IOS中 如何去除Tabview里面cell之间的下划线的主要内容,如果未能解决你的问题,请参考以下文章