4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【SwiftUI】スクロール時にキーボードを下げる

Posted at

はじめに

iOS16からscrollDismissesKeyboardという機能が使用できます。
これを使用するとスクロールでキーボードを閉じるかどうかを指定することができます。

実装

immediately

スクロールが始まったらすぐにキーボードが下がる。

import SwiftUI

struct ContentView: View {
    @State var text = ""
    var body: some View {
        ScrollView {
            VStack {
                TextField("", text: $text)
                    .textFieldStyle(.roundedBorder)
            }
            .padding(20)
        }
        .scrollDismissesKeyboard(.immediately)
    }
}

interactively

スクロールと連動してキーボードが下がる。

import SwiftUI

struct ContentView: View {
    @State var text = ""
    var body: some View {
        ScrollView {
            VStack {
                TextField("", text: $text)
                    .textFieldStyle(.roundedBorder)
            }
            .padding(20)
        }
        .scrollDismissesKeyboard(.interactively)
    }
}

never

スクロールによってキーボードが下がることはない

import SwiftUI

struct ContentView: View {
    @State var text = ""
    var body: some View {
        ScrollView {
            VStack {
                TextField("", text: $text)
                    .textFieldStyle(.roundedBorder)
            }
            .padding(20)
        }
        .scrollDismissesKeyboard(.never)
    }
}

動作動画

immediately interactively never
Simulator Screen Recording - iPhone 15 Pro - 2024-02-15 at 21.47.05.gif Simulator Screen Recording - iPhone 15 Pro - 2024-02-15 at 21.47.45.gif Simulator Screen Recording - iPhone 15 Pro - 2024-02-15 at 21.48.45.gif

おわり

ScrollDismissesKeyboardModeにはautomaticも存在します。
しかし、automaticを指定して使うことはないと思うので、今回の記事には記載していません。

公式ドキュメント

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?