0

我知道这种问题以前被问过很多次..但我很困惑,即使经过大量搜索也没有找到任何解决方案..

我有一个表格,其中单元格在每 6 个单元格之后重复。但奇怪的是,如果我单击任何重复的单元格,它会显示正确的数据,它应该didSelectRowAtIndexpath 方法中显示。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

     return  array.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    UIImageView * cellImageView;
    NSArray *pathComponents;
    NSData *imageData;
    UIImage *image;
    UILabel * mainLabel = nil;

    UITableViewCell *cell = nil;

    static NSString *CellIdentifier = @"Cell";

    cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        NSLog(@"in loop");

        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier]autorelease];

        mainLabel = [[[UILabel alloc]initWithFrame:CGRectMake(10, 10, 220, 15)]autorelease];

        [cell addSubview:mainLabel];
    }

    mainLabel.backgroundColor = [UIColor clearColor];
    mainLabel.textColor = [UIColor redColor];
    mainLabel.numberOfLines = 0;
    mainLabel.font  = [UIFont fontWithName:@"Arial-BoldMT" size:11];
    mainLabel.lineBreakMode = NSLineBreakByWordWrapping;
    mainLabel.text = [[array objectAtIndex:indexPath.row]retain];

    return cell;
}
4

3 回答 3

4
if (cell == nil)
{

    NSLog(@"in loop");

    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier]autorelease];


    mainLabel = [[[UILabel alloc]initWithFrame:CGRectMake(10, 10, 220, 15)]autorelease];
    mainLabel.tag = 1234;

    [cell addSubview:mainLabel];
}
else {
    mainLabel = (UILabel*)[cell viewWithTag:1234];
}

但除了回收本身的问题之外,还有其他一些问题。为了获得最佳性能,标签的所有设置——每次都相同的操作——应该在if子句内完成。仅在方法主体中 if/else 之后设置变量文本。

此外,如果不使用 ARC,则应在 addSubview 调用之后和if子句结束之前释放标签。

并且标签文本不应该被保留,因为它是从中获取的array——标签将保留它。

于 2013-06-03T11:20:21.563 回答
1

Try setting mainLabel attributes only first time.Keep your main label property settings in your condition if cell==nil

cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier]autorelease];

    UILabel *mainLabel = [[[UILabel alloc]initWithFrame:CGRectMake(10, 10, 220, 15)]autorelease];
    mainLabel.tag=23;

    mainLabel.backgroundColor = [UIColor clearColor];
    mainLabel.textColor = [UIColor redColor];
    mainLabel.numberOfLines = 0;
    mainLabel.font  = [UIFont fontWithName:@"Arial-BoldMT" size:11];
    mainLabel.lineBreakMode = NSLineBreakByWordWrapping;

    [cell addSubview:mainLabel];
}

UILabel *mLabel= (UILabel*)[cell viewWithTag:23];
mLabel.text = [array objectAtIndex:indexPath.row];
于 2013-06-03T11:20:47.050 回答
0

问题是您的 mainLabel 仅在创建新单元格时才被初始化。写一些类似的东西:

if (cell == nil)
{

    NSLog(@"in loop");

    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier]autorelease];


    mainLabel = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 220, 15)];
    mainLabel.tag = 100;

    [cell addSubview:mainLabel];
} else {
    mainLabel = [[cell viewWithTag:100] retain];
}
...
[mainLabel release];
于 2013-06-03T11:20:39.710 回答