滚动UITableView时隐藏键盘


134

在我的应用程序中,当我开始滚动UITableView时,我想隐藏键盘。我在互联网上对此进行了搜索,大多数答案是将UITableView子类化(http://stackoverflow.com/questions/3499810/tapping-a-uiscrollview-to-hide-the-keyboard)。

我做了子类,但这是行不通的。

#import <UIKit/UIKit.h>

@protocol MyUITableViewDelegate <NSObject>
@optional
- (void)myUITableViewTouchesBegan;
@end

@interface MyUITableView : UITableView <UITableViewDelegate, UIScrollViewDelegate> {
    id<MyUITableViewDelegate> delegate;
}
@end

.m文件

#import "MyUITableView.h"

@implementation MyUITableView

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
    NSLog(@"delegate scrollView"); //this is dont'work
    [super scrollViewDidScroll:scrollView];
}

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    NSLog(@"delegate myUITableViewTouchesBegan"); // work only here
    [delegate myUITableViewTouchesBegan];
    [super touchesBegan:touches withEvent:event];

}

- (void)dealloc {
...

我像这样使用此类。但是委托函数myUITableViewTouchesBegan在ViewController中不起作用

。H

#import <UIKit/UIKit.h>
#import "MyUITableView.h"

@interface FirstViewController : UIViewController <UITableViewDelegate, UISearchBarDelegate, MyUITableViewDelegate> {
    MyUITableView *myTableView;
    UISearchBar *searchBar; 
}

@property(nonatomic,retain) IBOutlet MyUITableView *myTableView;
...

.m

- (void) myUITableViewTouchesBegan{
    NSLog(@"myUITableViewTouchesBegan");
    [searchBar resignFirstResponder];
}

我在实现上遇到了一些麻烦:
1)myUITableViewTouchesBegan在ViewController中不起作用
2)从MyUITableView.m发送NSLog - NSLog(@“委托myUITableViewTouchesBegan”); 只有在我触摸桌子时才能工作。当我开始滚动时,它如何工作?
我尝试重写scrollViewDidScroll,但是编译器说MyUITableVIew可能对此字符串没有响应[super scrollViewDidScroll:scrollView];

Answers:


144

不知道为什么需要为此子类化UITableView。

在包含普通UITableView的视图控制器中,尝试添加以下内容:

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
    [searchBar resignFirstResponder];
}

417

这是在iOS 7.0及更高版本中实现此目标的最干净的方法:

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeOnDrag;

或触摸时以交互方式关闭:

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeInteractive;

或在Swift中:

tableView.keyboardDismissMode = .onDrag

要以交互方式关闭:

tableView.keyboardDismissMode = .interactive

21
当然,也可以在属性检查器中为使用笔尖和情节提要的用户设置此属性。
JuJoDi 2014年

1
杜德(Dude),我非常想念这个更新,我仍然在使用老式的方式,并且scrollview确实滚动了协议....谢谢我的男人!
Tomas Sykora 2015年

3
对于那些忘记的人,您仍然需要使UITextfield辞职为第一响应者。
skyline75489

1
我从事iOS开发已经有3年了,直到现在我还不知道...不真实。
雅各布·金

我如何错过这些东西,太棒了!
捕手

129

您可以在Interface Builder中执行此操作。选择您的UITableView并打开“属性”检查器。在“滚动视图”部分中,将“ 键盘”字段设置为“拖动时关闭”

在此处输入图片说明


谢谢,您救了我的命!
Sabobin 2015年

41

只是为上述答案添加更新。下面在Swift 1.2中为我工作

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissMode.OnDrag

要么

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissMode.Interactive

2

使用Swift 5

要在滚动TableView时隐藏键盘并停止正确编辑,我们仍然需要结合两种类型的答案:

  1. 例如,在IB(如Kyle所述)或ViewDidLoad()代码(如Pei所述)中设置键盘关闭模式:
tableView.keyboardDismissMode = .onDrag
  1. 强制当前文本字段辞职为第一响应者(如Vasily的回答)。我们只需要在我们的UITableViewController课程中添加以下内容
    override func scrollViewDidScroll(_ scrollView: UIScrollView) {
        if !tableView.isDecelerating {
            view.endEditing(true)
        }
    }

1

工作解决方案,而无需在Controller中编写单行代码:

因为您的问题是仅在一种情况下(滚动)处理隐藏键盘。但是在这里,我建议一种解决方案来同时处理文本字段和键盘,该解决方案的工作原理类似于UIViewController,UITableView和UIScrollView的魅力。有趣的事实是您不需要编写任何代码行。

前往这里:TPKeyboardAvoiding-处理键盘和滚动的出色解决方案


0

任务

在Swift 3中滚动UITableView时以编程方式隐藏键盘

细节

xCode 8.2.1,快速3

func scrollViewDidScroll(_ scrollView: UIScrollView) {
    if !tableView.isDecelerating {
        view.endEditing(true)
    }
}

完整样本

ViewController

import UIKit

class ViewController: UIViewController {

    @IBOutlet weak var tableView: UITableView!
    @IBOutlet weak var searchBar: UISearchBar!


    override func viewDidLoad() {
        super.viewDidLoad()
        tableView.dataSource = self
        tableView.delegate = self
    }
}

// MARK: - UITableViewDataSource

extension ViewController: UITableViewDataSource {

    func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 100
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell =  UITableViewCell(style: .subtitle, reuseIdentifier: nil)
        cell.textLabel?.text = "Title"
        cell.detailTextLabel?.text = "\(indexPath)"
        return cell
    }
}

// MARK: - UITableViewDelegate

extension ViewController: UITableViewDelegate {

    func scrollViewDidScroll(_ scrollView: UIScrollView) {
        if !tableView.isDecelerating {
            view.endEditing(true)
        }
    }
}

故事板

<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11762" systemVersion="16D32" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
    <device id="retina4_7" orientation="portrait">
        <adaptation id="fullscreen"/>
    </device>
    <dependencies>
        <deployment identifier="iOS"/>
        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11757"/>
        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
    </dependencies>
    <scenes>
        <!--View Controller-->
        <scene sceneID="tne-QT-ifu">
            <objects>
                <viewController id="BYZ-38-t0r" customClass="ViewController" customModule="stackoverflow_4399357" customModuleProvider="target" sceneMemberID="viewController">
                    <layoutGuides>
                        <viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
                        <viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
                    </layoutGuides>
                    <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
                        <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                        <subviews>
                            <searchBar contentMode="redraw" translatesAutoresizingMaskIntoConstraints="NO" id="wU1-dV-ueB">
                                <rect key="frame" x="0.0" y="20" width="375" height="44"/>
                                <textInputTraits key="textInputTraits"/>
                            </searchBar>
                            <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" keyboardDismissMode="interactive" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="L52-4c-UtT">
                                <rect key="frame" x="0.0" y="64" width="375" height="603"/>
                                <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
                            </tableView>
                        </subviews>
                        <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                        <constraints>
                            <constraint firstItem="wU1-dV-ueB" firstAttribute="bottom" secondItem="L52-4c-UtT" secondAttribute="top" id="0WF-07-qY1"/>
                            <constraint firstAttribute="trailing" secondItem="wU1-dV-ueB" secondAttribute="trailing" id="3Mj-h0-IvO"/>
                            <constraint firstItem="wU1-dV-ueB" firstAttribute="leading" secondItem="L52-4c-UtT" secondAttribute="leading" id="8W5-9j-2Rg"/>
                            <constraint firstItem="wU1-dV-ueB" firstAttribute="trailing" secondItem="L52-4c-UtT" secondAttribute="trailing" id="crK-dR-UYf"/>
                            <constraint firstItem="wU1-dV-ueB" firstAttribute="leading" secondItem="8bC-Xf-vdC" secondAttribute="leading" id="mPe-bp-Dxw"/>
                            <constraint firstItem="L52-4c-UtT" firstAttribute="bottom" secondItem="wfy-db-euE" secondAttribute="top" id="oIo-DI-vLh"/>
                            <constraint firstItem="wU1-dV-ueB" firstAttribute="top" secondItem="y3c-jy-aDJ" secondAttribute="bottom" id="tVC-UR-PA4"/>
                        </constraints>
                    </view>
                    <connections>
                        <outlet property="searchBar" destination="wU1-dV-ueB" id="xJf-bq-4t9"/>
                        <outlet property="tableView" destination="L52-4c-UtT" id="F0T-yb-h5r"/>
                    </connections>
                </viewController>
                <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
            </objects>
            <point key="canvasLocation" x="-79.200000000000003" y="137.18140929535232"/>
        </scene>
    </scenes>
</document>

结果

在此处输入图片说明


0

在iOS 7之后,您可以简单地使用tableview属性

迅捷3.0+

myTableView.keyboardDismissMode = UIScrollViewKeyboardDismissMode.OnDrag

物镜

myTableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeOnDrag;

对于早期版本,可以实现滚动视图委托。

func scrollViewDidScroll(_ scrollView: UIScrollView) {
        view.endEditing(true)
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.