UITableView 中部分的标题 - 删除文本阴影?

发布于 2024-09-06 21:07:12 字数 263 浏览 7 评论 0原文

我有一个带有黑色背景颜色的分组 UITableView 。 因此带有白色阴影的灰色部分标题是不可读的。 接下来要知道的是,部分高度因语言和部分而异。

如何用最简单的方法解决这个问题?

如果我实现 viewForHeaderInSection 我还需要实现 heightForHeaderInSection,但高度有所不同(几个具有不同标题和不同语言的部分 => 不同的文本长度/视图高度)

I have a grouped UITableView with black background color.
Thus the gray section headers with the white drop shadows are unreadable.
Next thing to know, the section height varies depending on language and section.

How to solve this the most easy way ?

If I implement viewForHeaderInSection I also need to implement heightForHeaderInSection, but the height varies (several sections with different title and different language => different text length/view height)

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

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

发布评论

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

评论(2

终陌 2024-09-13 21:07:12

您需要动态确定单元格的高度,并设置标签以使其自动调整大小。

希望链接对您有所帮助。

一切顺利。

You need to dynamically determine the height of the cell, and set your label so that it autosizes itself.

Hope this link will be helpful to you.

All the best.

木槿暧夏七纪年 2024-09-13 21:07:12

我在 6.1 中也遇到了同样的问题。这对我有用:

 - (void) viewDidLoad {

[super viewDidLoad];
[self.tableView setBackgroundView:nil];
self.tableView.backgroundColor = [UIColor blackColor];
[[UILabel appearance] setShadowColor:[UIColor clearColor]];
[[UILabel appearance] setTextColor:[UIColor lightGrayColor]];

I had the same issue in 6.1. This worked for me:

 - (void) viewDidLoad {

[super viewDidLoad];
[self.tableView setBackgroundView:nil];
self.tableView.backgroundColor = [UIColor blackColor];
[[UILabel appearance] setShadowColor:[UIColor clearColor]];
[[UILabel appearance] setTextColor:[UIColor lightGrayColor]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文