如何以允许用户选择单元格背景颜色的方式在 UITableViewCell 上获得圆角边缘? (但不使用GROUPED模式)

发布于 2024-12-08 21:46:57 字数 199 浏览 1 评论 0原文

有没有一种方法可以在 UITableViewCell 上获得圆角边缘:

  1. 允许用户在运行时选择/自定义单元格背景颜色(单元格可能并非全部具有相同的背景颜色)
  2. 不使用 UITableView“分组”模式

所以我'我假设这意味着我不能在这里使用正常的图像方法来获得圆角边缘,因为在这种情况下,它不允许上面的要求 1

Is there a way to get rounded edges on UITableViewCell's in a manner that:

  1. allows cell background color to be user selected/customised at run time (cells may not all have the same background color)
  2. not using the UITableView "GROUPED" mode

So I'm assuming this means I can't use the normal image approach here to get rounded edges, as in this case it would not allow for requirement 1 above

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

御弟哥哥 2024-12-15 21:46:58

嗯,听起来你应该尝试使用 CALayer。由于 UITableViewCell 是 UIView 子类,因此您可以操作其 CALayer 属性。

因此,首先,请确保#import

然后执行类似于

[cell.layer setCornerRadius:7.0f];
[cell.layer setMasksToBounds:YES];
[cell.layer setBorderWidth:2.0f];

创建单元时的操作。 (如果您尝试创建类似于分组表格的效果,我想您只想操作第一个和最后一个单元格。)这应该为单元格提供圆角。通过操纵 CALayer,您也许能够创建您想要的效果。

另外,请查看此答案了解如何执行此操作只有一些角落。

Well, it sounds like you should give using CALayer a try. Since a UITableViewCell is a UIView subclass, you can manipulate its CALayer property.

So, first, make sure to #import <QuartzCore/QuartzCore.h>

Then do something like, for example,

[cell.layer setCornerRadius:7.0f];
[cell.layer setMasksToBounds:YES];
[cell.layer setBorderWidth:2.0f];

when you create the cell. (If you are trying to create an effect like in a grouped table, I suppose you will want to manipulate only the first and last cells.) This should give the cell rounded corners. By manipulating the CALayer, you might be able to create the effect you want.

Also, check out this answer for how to do this to only some of the corners.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文