如何在tableview单元格(每行)中添加文本字段并将标记设置到每个文本字段以访问其文本

时间:2012-04-15 12:00:12

标签: iphone ios uitableview uitextfield

如何在tableview单元格中添加textfield(在每一行上)。 此文本字段将位于每行的中间。 并在单元格的每个文本字段上设置标记以访问其文本。

1 个答案:

答案 0 :(得分:5)

当然你可以,一个小例子:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"test"];
    if(cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"test"] autorelease];

        UITextView *tv = [[UITextView alloc] initWithFrame:CGRectMake(0, (cell.contentView.bounds.size.height-30)/2, cell.contentView.bounds.size.width, 30)];
        [cell.contentView addSubview:tv];
        [tv setDelegate:self];
        tv.tag = indexPath.row;
    }

    return cell;
}

...
- (void)textViewDidEndEditing:(UITextView *)textView {
    NSLog(@"%d", textView.tag);

    [textView resignFirstResponder];
}
...