0

我正在尝试在选择一行时添加一个按钮,UITableView并在第二次点击该行时将其删除,我不想要 custom UITableViewCell

任何建议或示例代码将不胜感激。

我尝试过的代码:在cellForRowAtIndexPath 方法中

if(cell.selected == YES){

                UITextField* numOfBottles =[[UITextField alloc] initWithFrame:CGRectMake(240,9.0f,50, 25)];
                numOfBottles.tag = indexPath.row;

                [numOfBottles setBorderStyle:UITextBorderStyleNone];
                [numOfBottles setBackgroundColor:[UIColor clearColor]];
                [numOfBottles setTextColor:[UIColor whiteColor]];
                [numOfBottles setTextAlignment:UITextAlignmentLeft];
                [numOfBottles setBackground:[UIImage imageNamed:@"blue_dropdown_normal.png"]];
                [numOfBottles setFont:[UIFont systemFontOfSize:16.0f]];
                [numOfBottles setDelegate:self];

                NSString* quantity = [[NSString alloc] initWithString:[subtotalObj.qtyArray objectAtIndex:(indexPath.row - 1)]];

                [numOfBottles setText:quantity];
                [numOfBottles setTextAlignment:UITextAlignmentCenter];
                [numOfBottles setBackgroundColor:[UIColor whiteColor]];
                numOfBottles.keyboardType = UIKeyboardTypeDefault;
               // numOfBottles.tag = indexPath.row;
                [cell.contentView addSubview:numOfBottles];
                [numOfBottles release];
            }

didSelectRowAtIndexPath方法中

[tableView reloadData];

但是仍然没有呈现按钮(带有背景图像的文本字段)。

4

3 回答 3

0

我认为最好的方法是使用 UITableViewCell 子类。但是您可以使用我对另一个问题的回答来使您的 TableView 重新呈现并在您的单元格中放置一个按钮。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    if(indexPath.row == selectedRow){ // if your criteria where met
      //add your button
    }

     return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    //do your select things here
  selectedRow = indexPath.row; //where selectedRow is a class variable
  [self.tableView reloadData]; // rerenders the tableview

}
于 2012-10-18T11:17:47.587 回答
0

UITableView委托,- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath实现它,您将在其中获取用户点击的行,获取您需要使用and传递的当前cell使用。现在检查是否有你想要的?如果是,则执行else 。如果你已经填写了s 你可以给标签来区分它们。cellForRowAtIndexPath:NSIndexPathsectionrowcell.contentView subviewsUIButtonremoveFromSuperViewaddSubViewcellUIButtonunique

于 2012-10-18T11:21:23.187 回答
0

使用这些代表

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  UITableViewCell *cell = (UITableViewCell*)[tableView cellForRowAtIndexPath:indexPath];
  //Create reference of button with tag 999
  cell.contentView addSubView:yourButtonReference]
  [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationNone];

}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = (UITableViewCell*)[tableView cellForRowAtIndexPath:indexPath];
    UIButton *btnAdded = (UIButton *)[cell viewWithTag:999];
    if(btnAdded){
      [btnAdded removeFromSuperView];
      [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationNone];
    }
}
于 2012-10-18T11:31:49.330 回答