我完全清楚这里存在很多这个问题的案例,虽然我很难过并且无法自行解决这个问题。我只想在我的myTableView2
UITableView
中显示总共4个单元格,但我发现我的单元格正在重复使用,这无疑是因为这条线
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
我理解,如果删除if(!cell)
行,我可能会禁用UITableView
来创建新单元格,但这不起作用,因为它要求创建单元格。有什么想法吗?我在下面发布了我的代码。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell)
{
NSLog(@"CREATING NEW CELL");
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.contentView.autoresizesSubviews = YES;
cell.contentView.clipsToBounds = YES;
}
if (tableView == self.myTableView)
{
if ([[array objectAtIndex:indexPath.row] isKindOfClass:[NSNumber class]])
{
cell.textLabel.text = [[array objectAtIndex:indexPath.row] stringValue];
cell.textLabel.textColor = [UIColor whiteColor];
cell.textLabel.textAlignment = NSTextAlignmentCenter;
}
else
{
cell.textLabel.text = [array objectAtIndex:indexPath.row];
cell.textLabel.textColor = [UIColor whiteColor];
cell.textLabel.textAlignment = NSTextAlignmentCenter;
}
}
if (tableView == self.myTableView2)
{
self.myTableView2.opaque = NO;
self.myTableView2.backgroundColor = [UIColor colorWithRed:(0.0/255.0) green:(0.0/255.0) blue:(102.0/255.0) alpha:1.0];
self.myTableView2.backgroundView = nil;
if ([[array2 objectAtIndex:indexPath.row] isKindOfClass:[NSNumber class]])
{
cell.textLabel.text = [[array2 objectAtIndex:indexPath.row] stringValue];
cell.textLabel.textColor = [UIColor whiteColor];
cell.textLabel.lineBreakMode = NSLineBreakByWordWrapping;
cell.textLabel.textAlignment = NSTextAlignmentCenter;
cell.textLabel.numberOfLines = 0;
[cell.textLabel sizeToFit];
cell.textLabel.font = [self fontForCell];
}
else
{
cell.textLabel.text = [array2 objectAtIndex:indexPath.row];
cell.textLabel.textColor = [UIColor whiteColor];
cell.textLabel.lineBreakMode = NSLineBreakByWordWrapping;
cell.textLabel.textAlignment = NSTextAlignmentCenter;
cell.textLabel.numberOfLines = 0;
[cell.textLabel sizeToFit];
cell.textLabel.font = [self fontForCell];
}
}
return cell;
}
其他相关数据:
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
if (tableView==self.myTableView)
{
return [array count];
}
else if(tableView==self.myTableView2)
{
return [array2 count];
}
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if (tableView==self.myTableView)
{
return [array count];
}
else if(tableView==self.myTableView2)
{
return [array2 count];
}
}
答案 0 :(得分:1)
解决!
问题#1:“NSDictionary
”for循环是不必要的,并且有助于多个条目。我删除了循环。
问题#2:numberOfSectionsInTableView
和numberOfRowsInSection
。编辑版本如下。获得的经验:如果您只想显示数组的一个实例,则希望numberOfSectionsInTableView
反映1。值为2将导致显示两个实例,依此类推。
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
if (tableView==self.myTableView)
{
return [array count];
}
else if(tableView==self.myTableView2)
{
return 1;
}
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if (tableView==self.myTableView)
{
return 5;
}
else if(tableView==self.myTableView2)
{
return [array2 count];
}
}