我创建了一个自定义单元格,其中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;
}
}
答案 0 :(得分:0)
在[commentTextField becomeFirstResponder];
正文中添加if
。