查看
extension View
-
注意
请参阅
SwiftUI/View/searchable(text:placement:prompt)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:)-6royb 有关可搜索视图修饰符的更多信息。声明
Swift
@MainActor 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
要过滤的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
@MainActor public func searchable<T: ObjectBase>(text: Binding<String>, collection: ObservedResults<T>, keyPath: KeyPath<T, String>, placement: SearchFieldPlacement = .automatic, prompt: LocalizedStringKey) -> some View
参数
text
要在搜索字段中显示和编辑的文本。
collection
要过滤的collection。
keyPath
用于筛选集合的属性的键路径。
placement
搜索字段在包含的视图层次结构中的首选位置。
prompt
搜索字段的本地化提示键,可为用户提供有关搜索内容的指导。
-
注意
请参阅
SwiftUI/View/searchable(text:placement:prompt)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:)-58egp 有关可搜索视图修饰符的更多信息。声明
Swift
@MainActor 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
要过滤的collection。
keyPath
用于筛选集合的属性的键路径。
placement
搜索字段在包含的视图层次结构中的首选位置。
prompt
表示搜索字段提示的字符串,为用户提供有关搜索内容的指导。
-
注意
请参阅
SwiftUI/View/searchable(text:placement:prompt:suggestions)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:suggestions:)-94bdu 有关可搜索视图修饰符的更多信息。声明
Swift
@MainActor 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
要过滤的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
@MainActor 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
要过滤的collection。
keyPath
用于筛选集合的属性的键路径。
placement
搜索字段在包含的视图层次结构中的首选位置。
prompt
搜索字段的本地化提示键,可为用户提供有关搜索内容的指导。
suggestions
一个视图构建器,用于生成填充建议列表的内容。
-
注意
请参阅
SwiftUI/View/searchable(text:placement:prompt:suggestions)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:suggestions:)-6h6qo 有关可搜索视图修饰符的更多信息。声明
Swift
@MainActor 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
要过滤的collection。
keyPath
用于筛选集合的属性的键路径。
placement
搜索字段在包含的视图层次结构中的首选位置。
prompt
表示搜索字段提示的字符串,为用户提供有关搜索内容的指导。
suggestions
一个视图构建器,用于生成填充建议列表的内容。
-
注意
请参阅
SwiftUI/View/searchable(text:placement:prompt)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:)-6royb 有关可搜索视图修饰符的更多信息。声明
Swift
@MainActor 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
要过滤的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
@MainActor 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
要过滤的collection。
keyPath
用于筛选集合的属性的键路径。
placement
搜索字段在包含的视图层次结构中的首选位置。
prompt
搜索字段的本地化提示键,可为用户提供有关搜索内容的指导。
-
注意
请参阅
SwiftUI/View/searchable(text:placement:prompt)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:)-58egp 有关可搜索视图修饰符的更多信息。声明
Swift
@MainActor 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
要过滤的collection。
keyPath
用于筛选集合的属性的键路径。
placement
搜索字段在包含的视图层次结构中的首选位置。
prompt
表示搜索字段提示的字符串,为用户提供有关搜索内容的指导。
-
注意
请参阅
SwiftUI/View/searchable(text:placement:prompt:suggestions)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:suggestions:)-94bdu 有关可搜索视图修饰符的更多信息。声明
Swift
@MainActor 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
要过滤的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
@MainActor 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
要过滤的collection。
keyPath
用于筛选集合的属性的键路径。
placement
搜索字段在包含的视图层次结构中的首选位置。
prompt
搜索字段的本地化提示键,可为用户提供有关搜索内容的指导。
suggestions
一个视图构建器,用于生成填充建议列表的内容。
-
注意
请参阅
SwiftUI/View/searchable(text:placement:prompt:suggestions)
https://developer.apple.com/documentation/swiftui/form/searchable(text:placement:prompt:suggestions:)-6h6qo 有关可搜索视图修饰符的更多信息。声明
Swift
@MainActor 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
要过滤的collection。
keyPath
用于筛选集合的属性的键路径。
placement
搜索字段在包含的视图层次结构中的首选位置。
prompt
表示搜索字段提示的字符串,为用户提供有关搜索内容的指导。
suggestions
一个视图构建器,用于生成填充建议列表的内容。