我正在使用UITableView,据我所知,它有灰色或蓝色的行选择。 有没有办法覆盖UITableView单元格选择行为(定义"选择"样式)?
如果没有,垂直集合视图是否可以模仿具有自定义选择的表格视图?
答案 0 :(得分:1)
根据UITableViewCell类参考,您仅限于:
UITableViewCellSelectionStyle 选定单元格的样式。
宣言 SWIFT
enum UITableViewCellSelectionStyle : Int {
case None
case Blue
case Gray
case Default
}
因此,您必须在选择时开发自己的自定义操作以更改背景颜色。