Перезагрузка табличного представления в xcode - PullRequest
0 голосов
/ 14 июня 2011

В моем приложении есть текстовое поле с кнопкой и табличным представлением. Внутри этого табличного представления я создаю представления изображений, которые будут отображать некоторые изображения. Теперь, когда я ввожу число, скажем 5 в текстовом поле, а затем нажмитеНажмите кнопку, после чего 5 изображений отображаются в виде таблицы, из которых 4 изображения находятся в первой строке. Теперь проблема возникает, если я ввожу число меньше 5, скажем 3, тогда мне нужно получить только 3 изображения в виде таблицы, но я все ещеполучаю 5 изображений, и если я ввожу больше 5, то получаю желаемое число в табличном представлении. Мой фрагмент кода: -

if([imageArray count] >0)
{
    [imageArray removeAllObjects];
}

int j = [text.text intValue];

for(int i=0;i<j;i++)
{
   [imageArray addObject:[UIImage imageNamed:[NSString stringWithFormat:@"%d.png", i]]];
}

[tableView reloadData];     

 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 5;
   }
   // Customize the appearance of table view cells.
   - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {


static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}


if(indexPath.row == 0)
{
    UIImageView *imageView1 = [[UIImageView alloc] initWithFrame:CGRectMake(0,5,100,125)];

    if([imageArray count]>0)
    {

        imageView1.image=[UIImage imageNamed:@"CARRY.png"];
        imageView1.image = [imageArray objectAtIndex:0];
        [cell.contentView addSubview:imageView1];
        [imageView1 release];
    }
    if([imageArray count]>1)
    {

        UIImageView *imageView2 = [[UIImageView alloc] initWithFrame:CGRectMake(150,5,100,125)];
        imageView2.image = [imageArray objectAtIndex:1];
        [imageView2 addSubview:button6];
        [cell.contentView addSubview:imageView2];
        [imageView2 release];
    }
    if([imageArray count]>2)
    {
        UIImageView *imageView3 = [[UIImageView alloc] initWithFrame:CGRectMake(310, 5, 100, 125)];
        imageView3.image = [imageArray objectAtIndex:2];
        [cell.contentView addSubview:imageView3];
        [imageView3 release];
    }
    if([imageArray count]>3)
    {
        UIImageView *imageView4 = [[UIImageView alloc] initWithFrame:CGRectMake(460,5,100,125)];
        imageView4.image = [imageArray objectAtIndex:3];
        [cell.contentView addSubview:imageView4];
        [imageView4 release];
    }

}
else if(indexPath.row == 1)
{
    if([imageArray count]>4)
    {
        UIImageView *imageView5 = [[UIImageView alloc] initWithFrame:CGRectMake(0,5,100,125)];
        imageView5.image = [imageArray objectAtIndex:4];
        [cell.contentView addSubview:imageView5];
        [imageView5 release];
    }
    if([imageArray count]>5)
    {                           
        UIImageView *imageView6 = [[UIImageView alloc] initWithFrame:CGRectMake(150,5,100,125)];
        imageView6.image = [imageArray objectAtIndex:5];
        [cell.contentView addSubview:imageView6];
        [imageView6 release];
    }

    if([imageArray count]>6)
    {
        UIImageView *imageView7= [[UIImageView alloc] initWithFrame:CGRectMake(310, 5, 100, 125)];
        imageView7.image = [imageArray objectAtIndex:6];
        [cell.contentView addSubview:imageView7];
        [imageView7 release];
    }
    if([imageArray count]>7)
    {                           
        UIImageView *imageView8 = [[UIImageView alloc] initWithFrame:CGRectMake(460,5,100,125)];
        imageView8.image = [imageArray objectAtIndex:7];
        [cell.contentView addSubview:imageView8];
        [imageView8 release];
    }
}

else if(indexPath.row == 2)
{
    if([imageArray count]>8)
    {
        UIImageView *imageView8 = [[UIImageView alloc] initWithFrame:CGRectMake(0,5,100,125)];
        imageView8.image = [imageArray objectAtIndex:8];
        [cell.contentView addSubview:imageView8];
        [imageView8 release];
    }
    if([imageArray count]>9)
    {                           
        UIImageView *imageView8 = [[UIImageView alloc] initWithFrame:CGRectMake(150,5,100,125)];
        imageView8.image = [imageArray objectAtIndex:9];
        [cell.contentView addSubview:imageView8];
        [imageView8 release];
    }                           

}




return cell;

}

Я очищаю массив и снова добавляю в него изображения, затемперезагрузка табличного представления, но почему вывод не идет в соответствии с потребностями. Пожалуйста, помогите.

Спасибо, Кристи

1 Ответ

1 голос
/ 14 июня 2011

Проблема в том, что вы добавляете виды изображений, но не удаляете те изображения, которые вы добавили ранее, в случае повторного использования ячеек.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...