Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用这种方式在 MainViewController 中关闭键盘,并且效果很好。
-(IBAction)closeKeyboard { [textfield resignFirstResponder]; }
但是,如果我在另一个 ViewController 中使用相同的方法,并且从 MainViewController 中推入它,它就不起作用。我将它连接到一个用于关闭键盘的按钮。如何更改代码?
您可以使用另一种有趣的方法:
[anyView endEditing:YES];
就像您认为 resignFirstResponder 中的所有文本字段一样