web-dev-qa-db-ja.com

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;
...

.m

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

この実装にはいくつかの問題があります。
1)myUITableViewTouchesBeganはViewControllerで動作しません
2)MyUITableView.mからのNSLog- NSLog(@ "delegate myUITableViewTouchesBegan"); テーブルに触れたときのみ動作します。スクロールを開始したときにもどのように機能しましたか?
[。 [super scrollViewDidScroll:scrollView];

120
olegi

このためにUITableViewをサブクラス化する必要がある理由がわかりません。

プレーンなUITableViewを含むView Controllerで、これを追加してみてください:

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

IOS 7.0以降でこれを実現する最もクリーンな方法を次に示します。

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeOnDrag;

または、タッチしたときにインタラクティブに閉じるには:

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeInteractive;

またはSwiftで:

tableView.keyboardDismissMode = .onDrag

インタラクティブに閉じるには:

tableView.keyboardDismissMode = .interactive
379
Pei

Interface Builderでこれを行うことができます。 UITableViewを選択し、属性インスペクターを開きます。スクロールビューセクションで、キーボードフィールドをドラッグ時に破棄に設定します。

enter image description here

119
Kyle Clegg

上記の回答に更新を追加するだけです。以下はSwift 1.2で私のために働いた

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissMode.OnDrag

または

tableView.keyboardDismissMode = UIScrollViewKeyboardDismissMode.Interactive
40
Gareth Jones

コントローラーにコードを1行も書かずに動作するソリューション:

あなたの質問は、非表示キーボードを1つの条件(スクロール時)のみで処理することです。ただし、ここでは、UIViewController、UITableView、UIScrollViewの魅力のように機能するテキストフィールドとキーボードを一緒に処理する1つのソリューションをお勧めします。興味深い事実は、コードを1行も書く必要がないということです。

ここに行きます: TPKeyboardAvoiding-キーボードとスクロールを処理する素晴らしいソリューション

1
iDevAmit

With Swift 5

TableViewをスクロールするときにキーボードを非表示にし、適切に編集を停止するには、まだcombineの2種類の回答が必要です。

  1. たとえば、IB(Kyleの説明として)またはViewDidLoad()コード(Peiの説明)でキーボード破棄モードを設定します。
tableView.keyboardDismissMode = .onDrag
  1. 現在のテキストフィールドに、最初のレスポンダーとして辞任するように強制します(Vasilyの回答のように)。 UITableViewControllerクラスに以下を追加するだけです
    override func scrollViewDidScroll(_ scrollView: UIScrollView) {
        if !tableView.isDecelerating {
            view.endEditing(true)
        }
    }
0
Thierry G.

仕事

Swift 3でUITableViewをスクロールするときにキーボードをプログラムで非表示にする

詳細

xCode 8.2.1、Swift 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)
        }
    }
}

StoryBoard

<?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>

結果

enter image description here

0

IOS 7以降では、tableviewプロパティを簡単に使用できます

Swift 3.0 +

myTableView.keyboardDismissMode = UIScrollViewKeyboardDismissMode.OnDrag

ObjectiveC

myTableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeOnDrag;

以前のバージョンでは、スクロールビューデリゲートの実装が機能していました。

func scrollViewDidScroll(_ scrollView: UIScrollView) {
        view.endEditing(true)
}
0
varunrathi28