ios - 取消选择不可见行
<p><p>我在更新 <code>UITableView</code> 中的行时遇到问题。在我的 <code>tableView</code> 部分中只能选择一行(可以有几个部分)。因此,当用户选择行时,我以编程方式取消选择本节中的其他行。当取消选择的行可见时,一切正常。如果任何取消选择的行不可见,则仍会对其进行检查。但是 <code>didDeselectRowAtIndexPath</code> 是为此行调用的。为什么?如何解决这个问题?</p>
<pre><code>- (NSIndexPath*)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
// It is predefined group - only one row in section cab be selected
// Deselect other rows in section
for (NSIndexPath * selectedIndexPath in tagTableView.indexPathsForSelectedRows) {
if (selectedIndexPath.section == indexPath.section) {
;
;
}
}
return indexPath;
}
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
.accessoryType = UITableViewCellAccessoryNone;
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>单元格的选定状态不应保存在 <code>UITableViewCell</code> 中,而应保存在填充单元格的对象(模型)中。</p>
<p>由于表格单元被重用,因此状态表示填充它们的模型的最后一个状态。您应该将所选状态保留在填充单元格的对象中,保留选择 indexPaths 的数组。</p>
<p><code>-tableView:cellForRowAtIndexPath:</code> 中的设置该单元格的正确状态。如果您的模型对象保持选定的状态,您可以根据该属性设置状态,或者如果您使用选择索引路径保留一个数组,请检查路径是否在数组中并相应地设置状态。</p></p>
<p style="font-size: 20px;">关于ios - 取消选择不可见行,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/21282603/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/21282603/
</a>
</p>
页:
[1]