在我的表格中,我使用UITextField
而不是UILabel
(enabled = 0
)。
现在按下一个添加按钮,最后一个单元格将变为可编辑状态。我尝试了以下方法:
UITextField *textField = [subviewsOfCell ObjectAtIndex:index];
[textField becomeFirstResponder];
但我不能让它编辑。 (我知道我得到了正确的单元格,因为textField.text = @"test";
正确显示)。我该怎么办?
答案 0 :(得分:2)
试着这样做:
UITextField *textField = [subviewsOfCell ObjectAtIndex:index];
textField.enabled = YES;
[textField becomeFirstResponder];
请告诉我这是否适合您。