我的ui中有一个UITABLEVIEW
列表为黑色,其列表选择器为灰色 我希望列表选择器为黑色或透明
我找不到控制
的属性 这是什么属性?答案 0 :(得分:0)
UITableViewCell selectionStyle
属性
答案 1 :(得分:0)
在
中- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
方法添加
cell.selectionStyle = UITableViewCellSelectionStyleNone;
为了使选择透明。
我希望它有所帮助。