更新:
我还尝试实现 UITextViewDelegate 委托,然后在我的控制器中执行:
- (BOOL)textViewShouldEndEditing:(UITextView *)textView
{
[textView resignFirstResponder];
return YES;
}
我还将文本视图的委托设置为自身(控制器视图实例)。
单击“完成”按钮仍会插入一个新行 :(
更新:
到目前为止我做了什么。我已经通过我的视图控制器实现了一个 UITextFieldDelegate。
我已经通过插座将文本视图连接到视图控制器。
然后我做了:
self.myTextView.delegate = self;
和:
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
return YES;
}
但是当我点击完成按钮时,它只是添加了一个新行。
所以我的场景中有一个 UITextView 元素,当用户点击它时,键盘会出现并且可以对其进行编辑。
但是,我不能关闭键盘。
如何将“完成”按钮添加到键盘以便将其关闭?
这很简单:)
[textField setReturnKeyType:UIReturnKeyDone];
为了关闭键盘在你的类中实现
<UITextFieldDelegate>
协议,设置
textfield.delegate = self;
并使用
- (void)textFieldDidEndEditing:(UITextField *)textField {
[textField resignFirstResponder];
}
或
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
[textField resignFirstResponder];
return YES;
}
添加 UIToolBar 作为自定义视图,其中包含完成按钮作为 UIBarButtonItem。
这是将“完成”按钮添加到任何类型的键盘的更安全、更简洁的方法。创建 UIToolBar 向其添加完成按钮并设置任何 UITextField 或 UITextView 的 inputAccessoryView。
UIToolbar *ViewForDoneButtonOnKeyboard = [[UIToolbar alloc] init];
[ViewForDoneButtonOnKeyboard sizeToFit];
UIBarButtonItem *btnDoneOnKeyboard = [[UIBarButtonItem alloc] initWithTitle:@"Done"
style:UIBarButtonItemStyleBordered target:self
action:@selector(doneBtnFromKeyboardClicked:)];
[ViewForDoneButtonOnKeyboard setItems:[NSArray arrayWithObjects:btnDoneOnKeyboard, nil]];
myTextField.inputAccessoryView = ViewForDoneButtonOnKeyboard;
完成按钮的 IBAction
- (IBAction)doneBtnFromKeyboardClicked:(id)sender
{
NSLog(@"Done Button Clicked.");
//Hide Keyboard by endEditing or Anything you want.
[self.view endEditing:YES];
}
SWIFT 3
var ViewForDoneButtonOnKeyboard = UIToolbar()
ViewForDoneButtonOnKeyboard.sizeToFit()
var btnDoneOnKeyboard = UIBarButtonItem(title: "Done", style: .bordered, target: self, action: #selector(self.doneBtnFromKeyboardClicked))
ViewForDoneButtonOnKeyboard.items = [btnDoneOnKeyboard]
myTextField.inputAccessoryView = ViewForDoneButtonOnKeyboard
功能
@IBAction func doneBtnFromKeyboardClicked (sender: Any) {
print("Done Button Clicked.")
//Hide Keyboard by endEditing or Anything you want.
self.view.endEditing(true)
}
进入你的故事板,选择你的文本字段,在属性检查器下有一个选项说“返回键”...选择“完成”。
然后进入您的 ViewController 并添加:
- (IBAction)dismissKeyboard:(id)sender;
{
[textField becomeFirstResponder];
[textField resignFirstResponder];
}
然后返回到您的文本字段,单击出口并链接“退出时结束”以关闭键盘操作。
Swift版本:
在你的视图控制器中:
textField.returnKeyType = UIReturnKeyType.Done
textField.delegate = self
在你的 ViewController 之后
extension MyViewController: UITextFieldDelegate {
func textFieldShouldReturn(textField: UITextField) -> Bool {
textField.resignFirstResponder()
return true
}
}
在检查器的
'Return Key'
选项下为您的文本字段设置text field
选项。
然后右键单击文本字段并在按住CTRL
的同时选择'Did End On Exit'
并将其拖到您的view controllers
文件中。这将创建一个IBAction
方法。为该方法命名,然后输入以下值:
[textField becomeFirstResponder];
[textField resignFirstResponder];
你的方法应该是这样的:
- (IBAction)methodName:(id)sender;
{
[sender becomeFirstResponder];
[sender resignFirstResponder];
}
好的,所以我也一直在为这个问题而苦苦挣扎。目前我正在访问 UITableViewCell 中的 UITextView(通过标签)。因为我使用的是原型单元格,所以我不能像每个人建议的那样使用 IBActions 或 IBOutlets。相反,我正在使用;
-(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
这将在每次用户点击按钮时向我提供文本。我当时的解决方案是获取新行的 ascii 字符; “/n”。如果那是输入的文本,我会辞去第一响应者的职务。例如;
// If the text length is 0 then the user is deleting something, so only check the ascii character if there is text to check if (text.length != 0) { // Get the Ascii character int asciiCode = [text characterAtIndex:0]; // If the ascii code is /n or new line, then resign first responder if (asciiCode == 10) { [alertTextView resignFirstResponder]; [DeviceTextView resignFirstResponder]; } }
不确定是否还有其他人需要这个 hacky 解决方案,但我想我会把它放在那里以防万一有人需要它!
这是在键盘上添加完成按钮的最佳方式
textField.returnKeyType = UIReturnKeyDone;
以下是我的做法,在
Swift 3
。当doneBtn
点击时,让它发送.editingDidEndOnExit
事件。我使用此事件来处理多个文本字段之间的焦点问题。
// My customized UITextField
class MyTextField: UITextField {
override func awakeFromNib() {
super.awakeFromNib()
// Add toolBar when keyboardType in this set.
let set : [UIKeyboardType] = [.numberPad, .phonePad]
if (set.contains(self.keyboardType) ) {
self.addDoneToolbar()
}
}
// Add a toolbar with a `Done` button
func addDoneToolbar() {
let toolbar = UIToolbar()
let space = UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: self, action: nil)
let doneBtn = UIBarButtonItem(barButtonSystemItem: .done, target: self, action: #selector(onToolBarDone))
toolbar.items = [space, doneBtn]
toolbar.sizeToFit()
self.inputAccessoryView = toolbar
}
@objc func onToolBarDone() {
// I use `editingDidEndOnExit` to simulate the `Done` behavior
// on the original keyboard.
self.sendActions(for: .editingDidEndOnExit)
}
}
适用于 Swift 5 及以上版本
extension UITextField {
func addDoneButtonOnKeyboard() {
let keyboardToolbar = UIToolbar()
keyboardToolbar.sizeToFit()
let flexibleSpace = UIBarButtonItem(barButtonSystemItem: .flexibleSpace,
target: nil, action: nil)
let doneButton = UIBarButtonItem(barButtonSystemItem: .done,
target: self, action: #selector(resignFirstResponder))
keyboardToolbar.items = [flexibleSpace, doneButton]
self.inputAccessoryView = keyboardToolbar
}
}
extension UITextView{
func addDoneButtonKeyboard(){
let keyboardToolbar = UIToolbar()
keyboardToolbar.sizeToFit()
let flexibleSpace = UIBarButtonItem(barButtonSystemItem: .flexibleSpace,
target: nil, action: nil)
let doneButton = UIBarButtonItem(barButtonSystemItem: .done,
target: self, action: #selector(resignFirstResponder))
keyboardToolbar.items = [flexibleSpace, doneButton]
self.inputAccessoryView = keyboardToolbar
}
}
iOS 14+ 解决方案
编辑:在 iOS 15 上为我工作但在 iOS 16 上不工作
这将在键盘上方的字段中央放置一个“完成”按钮。
TextField("MyField")
.toolbar{
Button("Done"){
//Close keyboard
UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}.tint(.blue)
}
在 Interface Builder 的 textView 属性中,您可以将返回按钮类型设置为完成。
然后您需要使用
检查何时按下返回按钮 - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
检查文本是否 == "/n",然后通过退出 textView 上的第一响应者来关闭键盘。