更改 didSelectRowAtIndexPath 函数中的 UITableViewCellAcessory

发布于 2024-08-21 05:23:42 字数 142 浏览 4 评论 0原文

有什么方法可以更改 didSelectRowAtIndexPath 函数中的 UITableViewCellAccessory 吗?

我需要将“播放”图标更改为“停止”图标..

谢谢:)

Is there any way of changing the UITableViewCellAccessory in the didSelectRowAtIndexPath function?

I need to change a "play"-icon to a "stop"-icon..

Thanks :)

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

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

发布评论

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

评论(2

樱桃奶球 2024-08-28 05:23:42

您可以使用该方法获取指向相关表格单元格的指针

cellForRowAtIndexPath:

,并将作为参数传入的 indexPath 传递给 didSelectRowAtIndexPath:,然后更改其 accessoryView 属性。像这样:

UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
[cell setAccessoryView:stopIconView];

其中 stopIconView 可能是 UIImageView 或其他东西。

You can get a pointer to the table cell in question by using the method

cellForRowAtIndexPath:

and passing the indexPath that is passed in as a parameter to didSelectRowAtIndexPath: and then change it's accessoryView property. Like this:

UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
[cell setAccessoryView:stopIconView];

Where stopIconView is likely to be a UIImageView or something.

甜警司 2024-08-28 05:23:42

可能值得查看 UITableViewCell 并查看是否可以向其中添加图像。

Might be worth looking at the accessoryView property in UITableViewCell and see if it is possible to add an image to it.

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