tableview怎么去掉多余出来的分隔线
1个回答
展开全部
列举自定义分割线的其中一种方法。
步骤一:全局设置UITableViewCell系统自带分割线“隐藏”,这个“隐藏”只是把分割线颜色设置为透明。这样做目的是为了保持自定义分割线frame和系统自带的分割线一样。如果不想一样,可以真正隐藏。
1 -(void)viewDidLoad
2 {
3 //设置分割线的风格
4 self.tableViewCategory.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
5 self.tableViewCategory.separatorColor = [UIColor clearColor];
6 self.tableViewList.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
7 self.tableViewList.separatorColor = [UIColor clearColor];
8 }
步骤一:全局设置UITableViewCell系统自带分割线“隐藏”,这个“隐藏”只是把分割线颜色设置为透明。这样做目的是为了保持自定义分割线frame和系统自带的分割线一样。如果不想一样,可以真正隐藏。
1 -(void)viewDidLoad
2 {
3 //设置分割线的风格
4 self.tableViewCategory.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
5 self.tableViewCategory.separatorColor = [UIColor clearColor];
6 self.tableViewList.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
7 self.tableViewList.separatorColor = [UIColor clearColor];
8 }
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询