标签: ios uialertview
在iOS解除警报后,是否有办法打开文本字段(如用户点击它(打开键盘))? 没有任何代码可以显示,因为我不知道从哪里开始! :)
答案 0 :(得分:1)
实施UIAlertViewDelegate方法。
UIAlertViewDelegate
在clickedButtonAtIndex:方法上,通过更改hidden属性或addSubview:
clickedButtonAtIndex:
hidden
addSubview:
并调出键盘
[textField becomeFirstResponder];