我在每个表格单元格中有几个UITextfields
。通过点击"完成"按钮或触摸键盘外,键盘应该被解除。
我的问题:textFieldShouldEndEditing
方法仅在我点击另一个文本字段时被调用,而键盘不会被解雇。
我认为我已经实施了必要的部分(代表和协议方法)。
有谁知道我在这里失踪了什么......?
以下是代码(相关部分):
class myVC: UIViewController, UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate {...
这是细胞设置......
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let tcell: UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "tbCell")
let textfield: UITextField = UITextField(frame:...
switch (indexPath.section) {
case 0: ...
case 1:
textfield.text = section2[indexPath.row]
tcell.addSubview(textfield)
textfield.delegate = self
return tcell
这是协议方法:
func textFieldShouldEndEditing(textField: UITextField) -> Bool {
textField.resignFirstResponder()
print("method is called")
return true
}
谢谢!
答案 0 :(得分:6)
我在Objective-C中给出了这个答案,因为我不使用Swift
tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeOnDrag;
当你滚动你的桌面视图,并且:
tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeInteractive;
当你触摸文本域外时。
答案 1 :(得分:3)
Swift 4.0
tableView.keyboardDismissMode = .onDrag
或
tableView.keyboardDismissMode = .interactive
答案 2 :(得分:1)
为什么不尝试使用textFieldShouldReturn UITextfield代理。
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
[textField resignFirstResponder];
return NO;}