Objective C:视图加载时如何突出显示表视图中的第一个单元格?

发布于 2024-11-08 11:46:51 字数 400 浏览 4 评论 0原文

我试图在子视图出现时默认突出显示表视图中的顶部单元格。

我尝试这样做:

switch(indexPath.row) { // assuming there is only one section
    case 0:
      cell.textLabel.text = @"First Cell:";
      cell.highlighted = YES
      break;

但这不起作用,因为我在第一个单元格上覆盖了黑色。

编辑(添加屏幕截图)

在此处输入图像描述

对此的任何建议将不胜感激!

谢谢

I am trying to default the top cell in my table view to be highlighted whenever the subview appears.

I tried to do this:

switch(indexPath.row) { // assuming there is only one section
    case 0:
      cell.textLabel.text = @"First Cell:";
      cell.highlighted = YES
      break;

But this doesn't work as I get a black overlay on my first cell instead.

EDIT (added screenshot)

enter image description here

Any advise on this will be greatly appreciated!

Thanks

Zhen

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

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

发布评论

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

评论(2

一笑百媚生 2024-11-15 11:46:51

我遇到了完全相同的问题。您需要将代码移至 willDisplayCell,而不是 cellForRowAtIndexPath。

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {

    if(indexPath.row == 0) {

        [cell setSelected:YES animated:NO];
    }
}

I had the exact same problem. You need to move your code into willDisplayCell, instead of cellForRowAtIndexPath.

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {

    if(indexPath.row == 0) {

        [cell setSelected:YES animated:NO];
    }
}
小瓶盖 2024-11-15 11:46:51

我认为你需要的是,

cell.selected = YES;

如果你想要它动画,你可以使用,

[cell setSelected:YES animated:YES];

I think what you need is,

cell.selected = YES;

If you want it animated you can use,

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