0

UITextField每当第一次选择任何行时,我都会添加一个到单元格UITableView,现在我想在第二次选择行时删除该文本字段。

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

在单元格中添加文本字段的代码:在cellForAtIndexPath方法中

 if (indexPath.row == selectedRow)
            {

                  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];

            }

didSelectedRowAtIndexPath

selectedRow = indexPath.row;
[mainTable reloadData];
4

3 回答 3

1

您可以通过为用于填充单元格的模型对象提供一个整数变量来轻松获得此信息。每次用户选择该单元格时,此变量都会增加 1。

然后在 –tableView:didDeselectRowAtIndexPath: 方法中(或者在你的应用程序中调用它)你可以做这样的事情:

if (selectedCellModel.selectCnt == 1) {
    //create the text field
} else if (selectedCellModel.selectCnt == 2) {
    //delete the text field
}
于 2012-10-19T10:21:21.770 回答
0

为什么不直接隐藏呢?

[yourTextField setHidden:YES];

或者如果 textField 是 tableview 单元格的子视图,只需将其删除。

[yourTextField removeFromSuperview];
于 2012-10-19T10:18:50.847 回答
0

我强烈建议您创建自己的 UITableViewCell 子类。在这个类中添加这个 UITextView 对象,它的方法- (void)setSelected:(BOOL)selected animated:(BOOL)animated显示/隐藏你的文本字段。

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];
    [textField setHidden:!textField.hidden]; //this alternately show and hide textField
}
于 2012-10-19T10:38:40.100 回答