ios - 在 UiTableView reloadData 之后保留选定的部分/行
<p><p>我有一个<code> uitaiteView </code>在选择<code> uitaiteViewCell </code>时,我调用Web服务以获取新数据,然后重新加载<code> uitaiteView </code> with </code>新数据。 </p>
<p>现在,所选行将始终是返回的新数据的一部分。但是,一个部分中的行数不会是恒定的。 </p>
<p>我试图在我重新加载表格 View 后选择的行上保持选择。我从 <code>didSelectRowAtIndexPath</code> 中保存了 indexPath。但是当我打电话时:</p>
<pre><code> [self.tableView selectRowAtIndexPath:self.selectedIndexPath
animated:NO
scrollPosition:UITableViewScrollPositionNone];
</code></pre>
<p>没有任何反应,我选择的行在重新加载后不再被选中。重新加载 <code>UITableView</code> 后是否有保留选择?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>试试</p>
<pre><code>dispatch_async(dispatch_get_main_queue(), ^{
[self.tableView selectRowAtIndexPath:self.selectedIndexPath
animated:NO
scrollPosition:UITableViewScrollPositionNone];
});
</code></pre>
<p>另外,请确保您的 <code>self.indexPath</code> 属性在重新加载 <code>UITableView</code> 后代表相同的单元格。</p></p>
<p style="font-size: 20px;">关于ios - 在 UiTableView reloadData 之后保留选定的部分/行,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/23262595/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/23262595/
</a>
</p>
页:
[1]