在没有按下的情况下写入uitextfield

时间:2014-07-13 16:14:58

标签: ios uitextfield

我创建了一个自定义单元格,其中textField最初是​​隐藏的。 当我选择单元格时,textField出现,我必须按textField才能写入。 我想要的是当我选择要在textField中立即写入的单元格时。这是我的代码:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    if ( indexPath.row == 0 ){
        commentTextField.text =  [NSString stringWithFormat:commentDetailTextLabel.text];
        commentTextField.textColor = [UIColor yellowColor];
        commentTextField.hidden = NO;
        commentDetailTextLabel.hidden = YES;
    }
} 

1 个答案:

答案 0 :(得分:0)

[commentTextField becomeFirstResponder];正文中添加if