ios - 如何为 UITableView 中的选定单元格制作透明背景
<p><p>如何使单元格透明。我只想用我已经完成的复选标记显示选定的单元格:</p>
<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)path {
UITableViewCell *cell = ;
if (cell.accessoryType == UITableViewCellAccessoryCheckmark) {
cell.accessoryType = UITableViewCellAccessoryNone;
}
else {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
}
</code></pre>
<p>当我第一次创建单元格时,我会执行下一行代码以消除蓝色背景</p>
<pre><code>cell.selectionStyle = UITableViewCellSelectionStyleNone;
</code></pre>
<p>但我有一个奇怪的问题,需要单击 2 次才能添加和删除复选框。也许这不是正确的做法?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以在此处阅读有关制作透明 <code>UITableViewCell</code> 的信息:<a href="https://stackoverflow.com/questions/1008246/how-to-create-a-uitableviewcell-with-a-transparent-background" rel="noreferrer noopener nofollow">How to create a UITableViewCell with a transparent background</a> </p>
<p>至于你的第二个问题,看来这可能是你真正想要的:</p>
<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)path {
UITableViewCell *cell = ;
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)path {
UITableViewCell *cell = ;
cell.accessoryType = UITableViewCellAccessoryNone;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何为 UITableView 中的选定单元格制作透明背景,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/15888799/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/15888799/
</a>
</p>
页:
[1]