2

在新的 iOS 8 自定义键盘扩展中,我们可以通过此代码转到下一个键盘。

[self advanceToNextInputMode];

如何关闭自定义键盘?(不隐藏,不去下一个键盘)。谢谢你的帮助。:)

4

2 回答 2

4

You can use UIInputViewController's dismissKeyboard method.

于 2014-06-18T16:49:09.747 回答
0

使用下面的代码,

目标-C:

[[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];

迅速:

UIApplication.sharedApplication().sendAction("resignFirstResponder", to:nil, from:nil, forEvent:nil)
于 2017-03-23T21:36:46.050 回答