UITableViewCell中UITextField视图的边框颜色

时间:2013-05-20 11:51:06

标签: ios objective-c uitableview uitextfield

我正在尝试在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中 - 它不起作用。 请帮忙!

1 个答案:

答案 0 :(得分:3)

cell.searchField.layer.borderWidth = 5.0f;

或使用任何其他宽度值。您还可以添加圆形corder:

cell.searchField.layer.cornerRadius = 7.0f;