我正在使用UITableView。我以编程方式在视图中添加了一个表,并通过添加UILable作为每个单元格的子视图来填充一些数据。表有21行。问题是当我向上或向下滚动时,前两行和最后2或3行中的数据与其他行的数据重叠。例如,前两个保龄球数据与前两个击球手数据重叠。任务是首先显示击球手列表然后将2个单元格留空,然后在同一个表格中显示保龄球列表。我的代码是
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
NSString *string1;
NSString *string2;
if(indexPath.row < [inningObject.battingLine count]){
Batter *cBatter = [inningObject.battingLine objectAtIndex:indexPath.row];
string1 = cBatter.batterName;
string2 = cBatter.runs;
}else if(indexPath.row > [inningObject.battingLine count]+1){
Bowler *cBowler = [inningObject.bowlingLine objectAtIndex: indexPath.row-[inningObject.battingLine count]-2]; // start from zero for next NSArray
string1 = cBowler.bowlerName;
string2 = cBowler.wickets;
}
CGRect a=CGRectMake(5, 0, 320, 38);
if(indexPath.row < [inningObject.battingLine count] || indexPath.row >= [inningObject.battingLine count]+2){
CGRect string1Rect = CGRectMake(5, 10, 150, 18);
UILabel *string1Label = [[UILabel alloc] initWithFrame:string1Rect];
string1Label.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];
string1Label.textAlignment = UITextAlignmentLeft;
string1Label.text = string1;
string1Label.font = [UIFont boldSystemFontOfSize:17];
[cell.contentView addSubview: string1Label];
[string1Label release];
CGRect string2Rect = CGRectMake(240, 10, 70, 18);
UILabel *string2Label = [[UILabel alloc] initWithFrame:string2Rect];
string2Label.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];
string2Label.textAlignment = UITextAlignmentLeft;
string2Label.text = string2;
string2Label.font = [UIFont boldSystemFontOfSize:17];
[cell.contentView addSubview: string2Label];
[string2Label release];
}
return cell;
}
答案 0 :(得分:0)
您发现问题是您对两种不同类型的数据使用相同的CellIdentifier
。有两种方法可以解决这个问题:
1.为2种不同类型的数据创建两个不同的单元标识符,即
CellIdentifier = @"Bowlers Cell";//for bowlers
和
CellIdentifier = @"Batters Cell";//for batters
2.你正在使用的方法是将2个单元格用于保龄球是最好的。你可以改为拥有大单元并且适合4个子视图,其中2个用于保龄球,2个用于击球手。
我建议选择选项2.