ビュー
extension View
-
注意
SwiftUI/View/searchable(text:placement:prompt)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:)-6roybを参照してください 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<T: ObjectBase>(text: Binding<String>, collection: ObservedResults<T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: Text? = nil) -> some View
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキーパス。
String
タイプのキーパスのみが許可されます。placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのプロンプトを表す
Text
。検索対象に関するガイダンスをユーザーに提供します。 -
注意
SwiftUI/View/searchable(text:placement:prompt)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:)-2ed8tを参照してください 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<T: ObjectBase>(text: Binding<String>, collection: ObservedResults<T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: LocalizedStringKey) -> some View
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキー パス。
placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのローカライズされたプロンプトのキー。検索対象に関するガイダンスをユーザーに提供します。
-
注意
SwiftUI/View/searchable(text:placement:prompt)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:)-58EGpを参照してください 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<T: ObjectBase, S>(text: Binding<String>, collection: ObservedResults<T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: S) -> some View where S: StringProtocol
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキー パス。
placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのプロンプトを表す string で、検索する対象に関するガイダンスがユーザーに提供されます。
-
注意
SwiftUI/View/searchable(text:placement:prompt:suggestions)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:sがないgs: )-94bdu を参照してください 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<T: ObjectBase, S>(text: Binding<String>, collection: ObservedResults<T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: Text? = nil, @ViewBuilder suggestions: () -> S) -> some View where S: View
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキー パス。
placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのプロンプトを表す
Text
。検索対象に関するガイダンスをユーザーに提供します。suggestions
提案のリストを入力するコンテンツを生成するビュー ビルダ。
-
注意
SwiftUI/View/searchable(text:placement:prompt:suggestions)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:suggestions:)-1mw1mを参照してください 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<T: ObjectBase, S>(text: Binding<String>, collection: ObservedResults<T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: LocalizedStringKey, @ViewBuilder suggestions: () -> S) -> some View where S: View
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキー パス。
placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのローカライズされたプロンプトのキー。検索対象に関するガイダンスをユーザーに提供します。
suggestions
提案のリストを入力するコンテンツを生成するビュー ビルダ。
-
注意
SwiftUI/View/searchable(text:placement:prompt:suggestions)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:sがないgs: )-6h6qo 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<T: ObjectBase, V, S>(text: Binding<String>, collection: ObservedResults<T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: S, @ViewBuilder suggestions: () -> V) -> some View where V: View, S: StringProtocol
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキー パス。
placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのプロンプトを表す string で、検索する対象に関するガイダンスがユーザーに提供されます。
suggestions
提案のリストを入力するコンテンツを生成するビュー ビルダ。
-
注意
SwiftUI/View/searchable(text:placement:prompt)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:)-6roybを参照してください 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<Key, T: ObjectBase>(text: Binding<String>, collection: ObservedSectionedResults<Key, T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: Text? = nil) -> some View
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキーパス。
String
タイプのキーパスのみが許可されます。placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのプロンプトを表す
Text
。検索対象に関するガイダンスをユーザーに提供します。 -
注意
SwiftUI/View/searchable(text:placement:prompt)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:)-2ed8tを参照してください 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<Key, T: ObjectBase>(text: Binding<String>, collection: ObservedSectionedResults<Key, T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: LocalizedStringKey) -> some View
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキー パス。
placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのローカライズされたプロンプトのキー。検索対象に関するガイダンスをユーザーに提供します。
-
注意
SwiftUI/View/searchable(text:placement:prompt)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:)-58EGpを参照してください 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<Key, T: ObjectBase, S>(text: Binding<String>, collection: ObservedSectionedResults<Key, T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: S) -> some View where S: StringProtocol
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキー パス。
placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのプロンプトを表す string で、検索する対象に関するガイダンスがユーザーに提供されます。
-
注意
SwiftUI/View/searchable(text:placement:prompt:suggestions)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:sがないgs: )-94bdu を参照してください 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<Key, T: ObjectBase, S>(text: Binding<String>, collection: ObservedSectionedResults<Key, T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: Text? = nil, @ViewBuilder suggestions: () -> S) -> some View where S: View
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキー パス。
placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのプロンプトを表す
Text
。検索対象に関するガイダンスをユーザーに提供します。suggestions
提案のリストを入力するコンテンツを生成するビュー ビルダ。
-
注意
SwiftUI/View/searchable(text:placement:prompt:suggestions)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:suggestions:)-1mw1mを参照してください 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<Key, T: ObjectBase, S>(text: Binding<String>, collection: ObservedSectionedResults<Key, T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: LocalizedStringKey, @ViewBuilder suggestions: () -> S) -> some View where S: View
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキー パス。
placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのローカライズされたプロンプトのキー。検索対象に関するガイダンスをユーザーに提供します。
suggestions
提案のリストを入力するコンテンツを生成するビュー ビルダ。
-
注意
SwiftUI/View/searchable(text:placement:prompt:suggestions)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:sがないgs: )-6h6qo 検索可能なビュー修飾子の詳細については、 を参照してください。宣言
Swift
public func searchable<Key, T: ObjectBase, V, S>(text: Binding<String>, collection: ObservedSectionedResults<Key, T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: S, @ViewBuilder suggestions: () -> V) -> some View where V: View, S: StringProtocol
パラメーター
text
検索フィールドに表示および編集するテキスト。
collection
フィルタリングするコレクション。
keyPath
コレクションをフィルタリングするために使用されるプロパティへのキー パス。
placement
を含むビュー階層内での検索フィールドの推奨配置です。
prompt
検索フィールドのプロンプトを表す string で、検索する対象に関するガイダンスがユーザーに提供されます。
suggestions
提案のリストを入力するコンテンツを生成するビュー ビルダ。