在新的iOS 8自定义键盘扩展程序中,我们可以通过此代码转到下一个键盘。
[self advanceToNextInputMode];
如何解雇自定义键盘? (不要隐藏,不要去下一个键盘)。 谢谢你的帮助。 :)
答案 0 :(得分:4)
您可以使用UIInputViewController
的{{1}}方法。
答案 1 :(得分:0)
使用以下代码
<强>目标-C:强>
[[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];
<强>夫特:强>
UIApplication.sharedApplication().sendAction("resignFirstResponder", to:nil, from:nil, forEvent:nil)