在 UITableViewCell 中的 UITextField 上创建干净的圆角
我正在带有圆角的 UITableViewCell 中创建 UITextField
UITextField *someTextField = [[UITextField alloc] initWithFrame:CGRectMake(165, 9, 135, 20)];
someTextField.backgroundColor = [UIColor whiteColor];
someTextField.borderStyle = UITextBorderStyleRoundedRect;
有没有办法使角区域、圆角和方角之间的部分变得清晰,以便背景颜色不会显示在那里。 任何帮助表示赞赏。 lq
[注:我回答了我自己的问题。抱歉,这是一个蹩脚的。 lq]
I'm creating a UITextField within a UITableViewCell with rounded corners
UITextField *someTextField = [[UITextField alloc] initWithFrame:CGRectMake(165, 9, 135, 20)];
someTextField.backgroundColor = [UIColor whiteColor];
someTextField.borderStyle = UITextBorderStyleRoundedRect;
Is there a way to make the corner area, the part between the rounded corner and the square corner clear so that the background color doesn't show there.
Any help is appreciated.
lq
[NOTE: I answered my own question. Sorry, it was a lame one. lq]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)