如何使用 NSTimer UITableViewCell

发布于 2024-11-04 19:26:15 字数 199 浏览 0 评论 0原文

在我的应用程序 UITableVierwCell 有一个图像(渐变单元格图像),我想在 didSelectRowAtIndexPath 的同一单元格的同一位置显示另一个图像(渐变单元格图像)。

我想显示,当我选择一个单元格时,当前单元格图像(渐变单元格图像)应该隐藏,而另一个图像(渐变单元格图像)应该显示。我认为这可以通过使用 NSTimer 来完成,我该怎么做呢?

In my app UITableVierwCell have an image(gradient cell image) and I want to show another image (gradient cell image) on same position in same cell at didSelectRowAtIndexPath.

I want to show when I select a cell then current cell image (gradient cell image) should be hide and another image (gradient cell image) should be display. I think this can be done by using NSTimer, how can I do this?

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

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

发布评论

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

评论(1

我一直都在从未离去 2024-11-11 19:26:15

我不知道你如何使用 NSTimer 来实现此目的。我将解释我心中的一些想法。

设置第一个图像视图的标签值并将其放置在单元格上。当用户选择单元格时(即在 didSelectRowAtIndexPath 中)


UITableViewCell *cell = [tableView cellForRowAtIndexPath:[tableView indexPathForSelectedRow]];

        UIView* imageCheckMark = [cell viewWithTag:kCellImageViewTag];
        if (imageCheckMark != nil) 
        {

            [imageCheckMark removeFromSuperview];
            [cell addSubview:secondImageView];
        }
        else
        {
            [cell addSubview:secondImageView];
        }

        [cell setSelected:NO animated:YES];

I don't know how you use a NSTimer for this purpose. I will explain some idea in my mind.

Set the tag value for your first image view and place it on the cell. When user select the cell (ie in didSelectRowAtIndexPath)


UITableViewCell *cell = [tableView cellForRowAtIndexPath:[tableView indexPathForSelectedRow]];

        UIView* imageCheckMark = [cell viewWithTag:kCellImageViewTag];
        if (imageCheckMark != nil) 
        {

            [imageCheckMark removeFromSuperview];
            [cell addSubview:secondImageView];
        }
        else
        {
            [cell addSubview:secondImageView];
        }

        [cell setSelected:NO animated:YES];

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