我正在尝试在UITableView的动态单元格中设置UITextField的边框颜色。 这就是代码:
UIColor *searchBorderColor = [UIColor colorWithRed:160.0/255.0
green: 160.0/255.0
blue:160.0/255.0
alpha: 1.0];
cell.searchField.layer.borderColor = [searchBorderColor CGColor];
我尝试将它放在cellForRowAtIndexPath,willDisplayCell,didEndDisplayingCell中 - 它不起作用。 请帮忙!
答案 0 :(得分:3)
cell.searchField.layer.borderWidth = 5.0f;
或使用任何其他宽度值。您还可以添加圆形corder:
cell.searchField.layer.cornerRadius = 7.0f;