点击单元格内的按钮时更新UITableViewCell外观

时间:2012-02-17 03:18:32

标签: objective-c ios uitableview

我有一个UITableView,它有一个相当复杂的布局,里面有一个加号和一个减号,允许你在单元格行中添加和减去值。

到目前为止,这是我的代码:

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

    NSString *CellIdentifier =@"Cell"; //[NSString stringWithFormat: @"Cell%@",[[self.purchaseOrderItems objectAtIndex:indexPath.row] ItemID]] ;

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) 
    {
      cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];  
    } 
    return [self styleCell:cell withIndexPath:indexPath];    
}

设计细胞样式:

    -(UITableViewCell *) styleCell: (UITableViewCell *) cell withIndexPath: (NSIndexPath *) indexPath {

        cell.tag = indexPath.row;
       // a bunch of layout code goes here along with my button
       UIButton *addBtn = [[[UIButton alloc] initWithFrame:CGRectMake(self.itemsTableView.frame.size.width-247, 35, 38, 33)] autorelease];
       [addBtn setBackgroundImage:[UIImage imageNamed:@"btn-cart-add"] forState:UIControlStateNormal];
       [addBtn setTag:cell.tag];
       [addBtn addTarget:self action:@selector(handleAddTap:) forControlEvents:UIControlEventTouchUpInside];

       // note I have the same tag on the cell as the button

    }

以及我处理点按的代码:

- (void)handleAddTap:(id)sender {  
    UIButton *btn = (UIButton *) sender;
    PurchaseOrderItem *item = [[[PurchaseOrderDataSource sharedPurchaseOrderDataSource] purchaseOrderItems] objectAtIndex:btn.tag];
    [[PurchaseOrderDataSource sharedPurchaseOrderDataSource] AddUpdatePurchaseOrderItem:item.ItemID WithQty:[NSNumber numberWithInt:[item.Qty intValue] + 1 ]];
    UITableViewCell *cell =(UITableViewCell *) [[btn superview ] superview];
   [cell setNeedsLayout];

}

我希望设置setNeedsLayout会进行重绘,但没有任何反应,如果我只是重新加载表这很好用,但是在大量的行上它变得非常笨重。此外,如果我将此行滚出视图然后再返回,则会正确更新。

如何更新此行而不重新加载整个表格或者必须再次滚动并重新登录屏幕?

1 个答案:

答案 0 :(得分:2)

您可以通过调用reloadRowsAtIndexPath来更新行。您可以根据您在addBtn.tag

中设置的cell.tag构建IndexPath
NSIndexPath *myip = [[NSIndexPath alloc] indexPathForRow:sender.tag inSection:0];
NSArray *nsa = [[NSArray alloc] initWithObjects:myip, nil];
[thisTableView reloadRowsAtIndexPaths:nsa withRowAnimation:UITableViewRowAnimationFade];