-1

これを行うのを手伝ってもらえますか?

static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = (UITableViewCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    cell.textLabel.text = [popOveritem objectAtIndex:indexPath.row];
    [cell.textLabel setFont:[UIFont systemFontOfSize:10.05f]];
    cell.imageView.image = [UIImage imageNamed:[popimage objectAtIndex:indexPath.row]];
    NSLog(@"cellCOntent%@",cell.textLabel.text);
    UIView *cellbgColorView = [[[UIView alloc] init]autorelease];
    [cellbgColorView setBackgroundColor:[UIColor colorWithRed:40/255.0 green:128/255.0 blue:184/255.0 alpha:1.0]];
    cell.selectedBackgroundView = cellbgColorView;

    tableVIEW.scrollEnabled = NO;
    return cell;

初めてテーブルビューに1つのレコードが表示され、ビューに表示されたボタンをクリックすると、テーブルビューの上部に別の行が追加されますか?

4

1 に答える 1