我有一个带有文本字段的自定义uitableviewcell。要在文本字段中输入文本,我使用的是自定义键盘。但是,当按下键盘按钮时,我的方法无法更新文本字段中的文本。当我检查我抓住的牢房时,我发现它是空的。这是我使用的代码:
VariableCellController *cell = (VariableCellController *)[equationViewController.variableTable cellForRowAtIndexPath:[NSIndexPath indexPathForRow:[equationViewController.selectedVariableRow intValue] inSection:0]];
其中VariableCellController是uitableviewcell控制器,equationViewController是我的CustomNumberPadViewController的属性。
似乎我的equationViewController的实例化不是实际显示的那个...
答案 0 :(得分:0)
知道了,我在键盘控制器类中添加了一个textfield作为属性,并在textfielddidbeginediting方法中将句柄传递给键盘控制器。