我改编了博客文章中的一个示例,它允许我与屏幕上的另一个视图共享与 ForEach 中选定元素关联的数据。它设置了FocusedValueKey
一致性:
struct FocusedNoteValue: FocusedValueKey {
typealias Value = String
}
extension FocusedValues {
var noteValue: FocusedNoteValue.Value? {
get { self[FocusedNoteValue.self] }
set { self[FocusedNoteValue.self] = newValue }
}
}
然后它有一个带有按钮的 ForEach 视图,其中焦点按钮使用.focusedValue
修饰符设置 NotePreview 的值:
struct ContentView: View {
var body: some View {
Group {
NoteEditor()
NotePreview()
}
}
}
struct NoteEditor: View {
var body: some View {
VStack {
ForEach((0...5), id: \.self) { num in
let numString = "\(num)"
Button(action: {}, label: {
(Text(numString))
})
.focusedValue(\.noteValue, numString)
}
}
}
}
struct NotePreview: View {
@FocusedValue(\.noteValue) var note
var body: some View {
Text(note ?? "Note is not focused")
}
}
这适用于 ForEach,但在将 ForEach 替换为 List 时无法正常工作。我怎样才能让它与 List 一起使用,为什么它不能开箱即用?