我在带有圆角的 UITableViewCell 中创建 UITextField
UITextField *someTextField = [[UITextField alloc] initWithFrame:CGRectMake(165, 9, 135, 20)];
someTextField.backgroundColor = [UIColor whiteColor];
someTextField.borderStyle = UITextBorderStyleRoundedRect;
有没有办法使角落区域,圆角和方角之间的部分清晰,以便背景颜色不显示在那里。
任何帮助表示赞赏。
lq
[注意:我回答了我自己的问题。对不起,这是一个蹩脚的。 ]
最佳答案
// Doh! This gets rid of the white corners:
someTextField.backgroundColor = [UIColor clearColor];