单击该单元格中的按钮时如何更改自定义单元格中的标签文本

问题描述:

我创建了一个带有标签和按钮的自定义tableView.在按钮上单击一个单元格,我只想更改该单元格中的标签文本.我的问题是,当我单击按钮时,其他单元格中的相应标签也会更改.这是我的代码

I have created a custom tableView with labels and buttons. On a button click in a cell i want to change the label text in that cell only. My problem is when i click button corresponding labels in other cell also changes. Here is my code

 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier=@"CellIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier: CellIdentifier];

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





        UILabel *labelOne = [[UILabel alloc]initWithFrame:CGRectMake(70, 10, 100, 20)];
        labelOne.tag = 100;
        labelOne.backgroundColor=[UIColor clearColor];
        labelOne.font=[UIFont systemFontOfSize:14];
        [cell.contentView addSubview:labelOne];
        [labelOne release];

        UIButton *minusbutton=[[UIButton alloc]initWithFrame:CGRectMake(152, 5, 15, 20)];

        minusbutton.backgroundColor=[UIColor clearColor];
        [minusbutton addTarget:self action:@selector(DecreaseTickets:) forControlEvents:UIControlEventTouchUpInside];
        [minusbutton setTitle:@"-" forState:UIControlStateNormal];
        [minusbutton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
        [minusbutton setBackgroundImage:[UIImage imageNamed:@"button-green1.png"] forState:UIControlStateNormal];
        [cell.contentView addSubview:minusbutton];
        [minusbutton release];


        UILabel *quantity = [[UILabel alloc]initWithFrame:CGRectMake(170, 5, 20, 20)];
        quantity.tag = 103;
        quantity.backgroundColor=[UIColor clearColor];
        quantity.font=[UIFont systemFontOfSize:12];
        [cell.contentView addSubview:quantity];
        [quantity release];

        UIButton *addbutton=[[UIButton alloc]initWithFrame:CGRectMake(192, 5, 15, 20)];

        addbutton.backgroundColor=[UIColor clearColor];
        [addbutton addTarget:self action:@selector(IncreaseTickets:) forControlEvents:UIControlEventTouchUpInside];
        [addbutton setTitle:@"+" forState:UIControlStateNormal];
        [addbutton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
        [addbutton setBackgroundImage:[UIImage imageNamed:@"button-green1.png"] forState:UIControlStateNormal];
        [cell.contentView addSubview:addbutton];
        [addbutton release];


        UILabel *labelTwo = [[UILabel alloc]initWithFrame:CGRectMake(260, 10, 140, 20)];
        labelTwo.tag = 101;
        labelTwo.backgroundColor=[UIColor clearColor];
        labelTwo.font=[UIFont systemFontOfSize:14];
        labelTwo.textColor=[UIColor colorWithRed:0.25098 green:0.447059 blue:0.07451 alpha:1];
        [cell.contentView addSubview:labelTwo];
        [labelTwo release];


        UILabel *label3 = [[UILabel alloc]initWithFrame:CGRectMake(70, 30, 230, 30)];
        label3.tag = 102;
        label3.backgroundColor=[UIColor clearColor];
        label3.numberOfLines=2;
        label3.font=[UIFont systemFontOfSize:12];
        [cell.contentView addSubview:label3];
        [label3 release];


}


    UILabel *labelOne = (UILabel *) [cell.contentView viewWithTag:100];
    NSString *ss2=[[NSString alloc]initWithFormat:@"%@",[[eventTicketListArray objectAtIndex:indexPath.row ]tit] ];

    labelOne.text = ss2;    

    UILabel *labelTwo = (UILabel *) [cell.contentView viewWithTag:101];
    labelTwo.text = [[NSString alloc]initWithFormat:@"%@",[[eventTicketListArray    objectAtIndex:indexPath.row ]price] ];

    UILabel *label3 = (UILabel *) [cell.contentView viewWithTag:102];
    label3.text=[[NSString alloc]initWithFormat:@"%@",[[eventTicketListArray objectAtIndex:indexPath.row ]desc ] ];

    UILabel *label4 = (UILabel *) [cell.contentView viewWithTag:103];
    label4.text=[[NSString alloc]initWithFormat:@"%d",qty];
}


return cell;

}

   Initially qty=0

现在我希望当我单击添加按钮时,该单元格的数量增加.这是我的按钮点击事件

now i want that when i click addbutton, qty of that cell increases. here is my button click event

   -(void)IncreaseTickets:(id)sender{

NSIndexPath *indexPath =[ticketTable indexPathForCell:(UITableViewCell *)[[sender superview] superview]];

//NSUInteger row = indexPath.row;
  UITableViewCell *currentCell = (UITableViewCell *)[[sender superview] superview] ;

UILabel *label4 = (UILabel *) [currentCell.contentView viewWithTag:103];
label4.text=[[[NSString alloc]initWithFormat:@"%d",qty++] ;

//NSLog(@"%d",row);

[ticketTable reloadData];

}

但是问题是当我单击按钮时,所有单元的数量都增加了.请指导我如何做.任何帮助将不胜感激.

But the problem is when i click the button,qty of all cell increases. Please guide me how to do it. Any help will be appreciated.

致电时

 [ticketTable reloadData];

重新加载所有数据,并再次初始化表

all your data reload and your table is initialized again

UITable的魔力在于重用一些分配的单元格(只是所需的最小单元格数:屏幕上一次可见的单元格),然后在滚动时应使用新的数据设置来重用它们,通常使用NSArray您的表格数据委托人...

UITable magic is in reuse of a few allocated cells (just the minimus number of cell required: the viewable cells in a time on screen) and then you should just reuse them with new data setting when you scroll, typically using NSArray in your table data delegate...

和:定义数量的地方?看来这是一个全局变量,而不是每个单元格都有一个变量.

and: where qty is defined? it seems it's a global variable, not one for every single cell...

您最好阅读一些苹果示例代码或一些教程

you'd better to read some apple example code or some tutorial