在 UITableViewCell 中的 UITextField 上创建干净的圆角

发布于 2024-10-27 10:56:40 字数 380 浏览 1 评论 0原文

我正在带有圆角的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

思慕 2024-11-03 10:56:40
// Doh! This gets rid of the white corners:
someTextField.backgroundColor = [UIColor clearColor];
// Doh! This gets rid of the white corners:
someTextField.backgroundColor = [UIColor clearColor];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文