在 UITableViewCell 中显示突出显示的图像
我已将图像和背景图像设置为 UITableViewCell。 但是当我点击它时,它显示标准的蓝色高亮,而不是我的。
你知道我怎样才能改变这个机制吗?
谢谢,尼尔斯
I have set an image and a background image to a UITableViewCell.
But when I click on it, it show the standard blue high-lightening and not mine.
Do you know how I can change this mecanism ?
Thanks, Niels
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在表视图委托中使用它:
您还可以将单元格的 selectedBackgroundView 设置为自定义视图并设置其背景颜色。
Use this in your table view delegate:
You can also set the cell's selectedBackgroundView to a custom view and set its backgroundColor.
你只需要设置两个UITableViewCell属性backgroundView和selectedBackgoundView。 iOS 将完成剩下的工作。
You just have to set the two UITableViewCell property backgroundView and selectedBackgoundView. iOS will do the rest.