在secondViewController上设置firstViewController的UITextField的焦点

时间:2011-08-27 07:38:59

标签: iphone uitextfield

当我的secondViewController从navigationController中弹出时,如何在firstViewController上设置特定的UITextField?

2 个答案:

答案 0 :(得分:1)

在secondViewController中的ViewdidLoad中写[TexfieldName becomeFirstResponder];

这将集中于特定的textField和显示键盘。

答案 1 :(得分:0)

如果您不想使用viewWillAppear:,则可以使用UINavigationControllerDelegate方法– navigationController:willShowViewController:animated:并以此方式调用您的方法。

只需确保某个类是导航控制器的delegate,然后让它调用firstViewController调用becomeFirstResponder中的方法。

编辑:链接到UINavigationControllerDelegate上的Apple文档。