给键盘添加工具栏(按钮)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给键盘添加工具栏(按钮)相关的知识,希望对你有一定的参考价值。

 UIToolbar *keyboardDoneButtonView = [[UIToolbar alloc] init];

    [keyboardDoneButtonView sizeToFit];

    UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithTitle:@"Done"

                                                                   style:UIBarButtonItemStylePlain target:self

                                                                  action:@selector(doneClicked:)];

    [keyboardDoneButtonView setItems:[NSArray arrayWithObjects:doneButton, nil]];

    self.textField.inputAccessoryView = keyboardDoneButtonView;

 

以上是关于给键盘添加工具栏(按钮)的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 React Native 制作默认键盘上方的工具栏?

在不添加完成键的情况下关闭数字键盘式键盘

Swift:以编程方式在键盘上方添加 UIButton

工具栏上一个和下一个按钮逻辑

如何在 Swift 2.0 中使用完成按钮做数字键盘?

在键盘上方添加 UITextField