【SwiftUI】背景タップで TextField() を下げる
目的
・背景をタップすることで TextField() を下げる
使用する場面
・チャットアプリ
・文字を入力するもの全般
重要なプログラム
① : タップを検知する
// ① : タップを検知する
.onTapGesture {
// TextField() を下げる関数の呼び出し
UIApplication.shared.closeKeyboard()
}
② : TextField() を下げる(閉じる)
// ② : TextField() を下げる(閉じる)
extension UIApplication {
func closeKeyboard() {
sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}
}
完成
ContentView.swift
import SwiftUI
struct ContentView: View {
@State var name: String = ""
var body: some View {
ZStack {
// 背景はオレンジ色
Color.orange
.opacity(0.4)
.edgesIgnoringSafeArea(.all)
// ① : タップを検知する
.onTapGesture {
UIApplication.shared.closeKeyboard()
}
VStack {
Text("Input: ") + Text(name)
TextField("Placeholder", text: $name)
.padding()
.border(Color.white, width: CGFloat(3))
}
}
}
}
// ② : TextField() を下げる(閉じる)
extension UIApplication {
func closeKeyboard() {
sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
確認
extension とは
// ① : タップを検知する
.onTapGesture {
// TextField() を下げる関数の呼び出し
UIApplication.shared.closeKeyboard()
}
// ② : TextField() を下げる(閉じる)
extension UIApplication {
func closeKeyboard() {
sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}
}
ContentView.swift
import SwiftUI
struct ContentView: View {
@State var name: String = ""
var body: some View {
ZStack {
// 背景はオレンジ色
Color.orange
.opacity(0.4)
.edgesIgnoringSafeArea(.all)
// ① : タップを検知する
.onTapGesture {
UIApplication.shared.closeKeyboard()
}
VStack {
Text("Input: ") + Text(name)
TextField("Placeholder", text: $name)
.padding()
.border(Color.white, width: CGFloat(3))
}
}
}
}
// ② : TextField() を下げる(閉じる)
extension UIApplication {
func closeKeyboard() {
sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
確認
extension とは
既にあるクラスに機能を追加する
TextField() を上げるには
UIResponder.resignFirstResponder (上げる)
↓
UIResponder.keyboardWillShowNotification (下げる)
参考文献
Author And Source
この問題について(【SwiftUI】背景タップで TextField() を下げる), 我々は、より多くの情報をここで見つけました https://qiita.com/Soccerboy_Hamada/items/3cce394256f2ffd229b3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .