更改 didSelectRowAtIndexPath 函数中的 UITableViewCellAcessory
有什么方法可以更改 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用该方法获取指向相关表格单元格的指针
,并将作为参数传入的 indexPath 传递给
didSelectRowAtIndexPath:
,然后更改其accessoryView
属性。像这样:其中
stopIconView
可能是 UIImageView 或其他东西。You can get a pointer to the table cell in question by using the method
and passing the indexPath that is passed in as a parameter to
didSelectRowAtIndexPath:
and then change it'saccessoryView
property. Like this:Where
stopIconView
is likely to be a UIImageView or something.可能值得查看 UITableViewCell 并查看是否可以向其中添加图像。
Might be worth looking at the accessoryView property in UITableViewCell and see if it is possible to add an image to it.