如何在 verticalSeprator UITable 中添加颜色
how to add colour in verticalSeprator UITable
我如何在 verticalSeperator 中添加特定颜色 UITable.I 尝试使用 UIColor 选项但它不起作用请帮我解决这个问题。
HJTextFieldCell *cell = (HJTextFieldCell *)[_tableView dequeueReusableCellWithIdentifier:textCellIdentifier];
cell.constraint_leftSideOftxtFild.constant = 10.0f;
cell.constraint_heigntOfTxtField.constant = 30.0f;
cell.lbl_verticalSeprator.hidden =NO;
cell.lbl_verticalSeprator.textColor = [UIColor colorWithRed:0.0/255.0 green:0.0/255.0 blue:0.098/255.0 alpha:0.22];
尝试使用背景颜色而不是文本颜色。
cell.lbl_verticalSeprator.backgroundColor = [UIColor colorWithRed:0.0/255.0 green:0.0/255.0 blue:0.098/255.0 alpha:0.22];
最好的方法是使用本机分隔符,您可以使用 tableView.separatorColor
或 UITableview
更改颜色
我如何在 verticalSeperator 中添加特定颜色 UITable.I 尝试使用 UIColor 选项但它不起作用请帮我解决这个问题。
HJTextFieldCell *cell = (HJTextFieldCell *)[_tableView dequeueReusableCellWithIdentifier:textCellIdentifier];
cell.constraint_leftSideOftxtFild.constant = 10.0f;
cell.constraint_heigntOfTxtField.constant = 30.0f;
cell.lbl_verticalSeprator.hidden =NO;
cell.lbl_verticalSeprator.textColor = [UIColor colorWithRed:0.0/255.0 green:0.0/255.0 blue:0.098/255.0 alpha:0.22];
尝试使用背景颜色而不是文本颜色。
cell.lbl_verticalSeprator.backgroundColor = [UIColor colorWithRed:0.0/255.0 green:0.0/255.0 blue:0.098/255.0 alpha:0.22];
最好的方法是使用本机分隔符,您可以使用 tableView.separatorColor
或 UITableview