ios - 修改 CellForRowAtIndexPath 中的一个单元格会更改多个单元格
<p><p>我有一组通过 tableview 显示的名称。您最多可以选择 3 个名称,并且不能重新选择相同的名称。为此,我在 <code>cellForRowAtIndexPath:</code> 中实现了以下代码。当我运行代码时,名称显示得很好,但是有多个红色单元格的名称是我没有选择的。</p>
<pre><code>-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"TableCell";
UITableViewCell *cell = (UITableViewCell *);
if (cell == nil) {
cell = [ initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
NSString *sectionTitle = ;
NSArray *sectionNames = ;
NSString *name = ;
cell.textLabel.text = name;
if ( || || ) {
;
cell.backgroundColor = ;
cell.accessoryType = UITableViewCellAccessoryNone;
}
return cell;
}
</code></pre>
<p>阅读类似问题<a href="https://stackoverflow.com/questions/10548667/uitableview-cellforrowatindexpath-called-more-than-once-for-each-row" rel="noreferrer noopener nofollow">here</a> ,他们说这是因为单元格被重用了 - 但如果这是真的,表格 View 如何仍然在正确的位置显示正确的名称?</p>
<p>我试着把代码简化成这样,还是没用,有多个红细胞。</p>
<pre><code>myIP = ;
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"TableCell";
UITableViewCell *cell = (UITableViewCell *);
if (cell == nil) {
cell = [ initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
NSString *sectionTitle = ;
NSArray *sectionNames = ;
NSString *name = ;
cell.textLabel.text = name;
if (indexPath == myIP) {
cell.backgroundColor = ;
}
return cell;
}
</code></pre>
<p>如果需要,我可以发布屏幕截图。注意:预期名称已正确标记为红色。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>由于单元重复使用而发生此问题。当重新使用具有红色背景的单元格时,它仍将处于红色背景中,您不会在代码中的任何位置重新设置它。您需要为 <code>cellForRowAtIndexPath:</code> 方法中使用的 if 条件添加一个 else 案例。</p>
<pre><code>if ( || || )
{
;
cell.backgroundColor = ;
cell.accessoryType = UITableViewCellAccessoryNone;
}
else
{
;
cell.backgroundColor = ;
// Other stuffs
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 修改 CellForRowAtIndexPath 中的一个单元格会更改多个单元格,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/34423505/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/34423505/
</a>
</p>
页:
[1]