如何在ios的UITableview中选择样式为无时显示选择按钮?
Posted
技术标签:
【中文标题】如何在ios的UITableview中选择样式为无时显示选择按钮?【英文标题】:How to display selection button when selection style is none in UITableview in ios? 【发布时间】:2014-09-17 07:15:10 【问题描述】:我需要设置
cell.selectionStyle = UITableViewCellSelectionStyleNone;
在我的表格视图中。我可以检查多个单元格以删除行。这样做时,左侧选择的默认图像(带刻度的圆圈)不会显示。当我将选择样式设置为
` UITableViewCellSelectionStyleBlue
UITableViewCellSelectionStyleGray
UITableViewCellSelectionStyleDefault`
我的问题是,当 tableview 中没有选择样式时,有什么方法可以显示选择按钮?
【问题讨论】:
***.com/questions/11920156/…查看这个答案,希望对您有帮助 【参考方案1】:你可以留下UITableViewCellSelectionStyleDefault
如果要更改单元格的选定颜色:
UIView *colorView = [[UIView alloc] init];
colorView.backgroundColor = [UIColor clearColor];
[cell setSelectedBackgroundView:colorView];
【讨论】:
以上是关于如何在ios的UITableview中选择样式为无时显示选择按钮?的主要内容,如果未能解决你的问题,请参考以下文章
如何以普通样式隐藏在 UITableView 中显示的空 UITableViewCells - IOS?
我们如何获得类似于 ios 6 的 ios 7 的分组 UITableview 样式
[IOS] - UITableView 与 UICollectionView API及其使用