作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的类里面,我有超过 30 个 UITextField 和一个 UIButton。当我单击 ui 按钮时,我需要退出所有 uitextfield 的键盘,而不向所有 30 个 uitextfields 提供 resignfirstresponder。
我的代码是这样的
-(IBAction)click:(id)sender
{
[txt1 resignFirstResponder];
[txt2 resignFirstResponder];
[txt3 resignFirstResponder];
[txt4 resignFirstResponder];
.
.
.
[txt30 resignFirstResponder];
}
我需要简单的方法来退出 UITextField 键盘
最佳答案
每个 View 都有 endEditing 属性,试试这个
[[self view] endEditing:YES];
让我知道它是否适合你..
关于ios - 在 iOS 中单击 UIButton 时,不止一个 UITextField 键盘关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17162941/
我是一名优秀的程序员,十分优秀!