[ios] UITableView를 스크롤 할 때 키보드 숨기기

내 응용 프로그램에서 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;
...

.미디엄

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

이 구현에 문제가 있습니다.
1) myUITableViewTouchesBegan이 ViewController에서 작동하지 않습니다 . 2) MyUITableView.m의
NSLog- NSLog (@ “delegate myUITableViewTouchesBegan”); 내가 테이블을 만질 때만 작동합니다. 스크롤을 시작할 때 어떻게 작동합니까?
scrollViewDidScroll을 재정의하려고 시도했지만 컴파일러는 MyUITableVIew가이 문자열에 응답하지 않을 수 있다고 말했습니다. [super scrollViewDidScroll : scrollView];



답변

왜 UITableView를 서브 클래스 화 해야하는지 잘 모르겠습니다.

일반 UITableView를 포함하는 뷰 컨트롤러에서 다음을 추가하십시오.

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


답변

iOS 7.0 이상에서이를 달성하는 가장 깨끗한 방법은 다음과 같습니다.

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeOnDrag;

또는 터치시 대화식으로 닫을 수 있습니다.

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeInteractive;

또는 스위프트에서 :

tableView.keyboardDismissMode = .onDrag

대화식으로 닫으려면

tableView.keyboardDismissMode = .interactive


답변

Interface Builder에서 바로 수행 할 수 있습니다. 을 선택 UITableView하고 속성 관리자를 엽니 다. 스크롤보기 섹션에서 키보드 필드를 드래그시 해제로 설정하십시오 .

여기에 이미지 설명을 입력하십시오


답변

위의 답변에 업데이트를 추가하십시오. 아래는 Swift 1.2에서 나를 위해 일했습니다.

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissMode.OnDrag

또는

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissMode.Interactive


답변

스위프트 5

TableView를 스크롤 할 때 키보드를 숨기고 올바르게 편집을 중지하려면 여전히 두 가지 유형의 답변 을 결합 해야 합니다.

  1. 예를 들어 IB ( Kyle이 설명) 또는 ViewDidLoad()코드 ( Pei가 설명) 에서 키보드 해제 모드를 설정하십시오 .
tableView.keyboardDismissMode = .onDrag
  1. 현재 텍스트 필드를 Vasily 의 답변 에서와 같이 첫 번째 응답자로 사임하도록 강요하십시오 . UITableViewController수업에 다음을 추가하면됩니다.
    override func scrollViewDidScroll(_ scrollView: UIScrollView) {
        if !tableView.isDecelerating {
            view.endEditing(true)
        }
    }


답변

컨트롤러에서 한 줄의 코드를 작성하지 않고 작동하는 솔루션 :

귀하의 질문은 숨기기 키보드를 하나의 조건으로 만 처리하는 것입니다 (스크롤). 그러나 여기서는 UIViewController, UITableView 및 UIScrollView의 매력처럼 작동하는 텍스트 필드와 키보드를 함께 처리하는 하나의 솔루션을 권장합니다. 흥미로운 사실은 한 줄의 코드를 작성할 필요가 없다는 것입니다.

여기 요 : TPKeyboardAvoiding을 – 핸들 키보드와 스크롤을 끝내 솔루션을


답변

직무

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>

결과

여기에 이미지 설명을 입력하십시오