简体   繁体   中英

Binding in a ForEach in SwiftUI

I use a FetchRequest to fill the elements. Then I'm using a list and want to display some kind of todo elements where you see which one is checked and which one not. Therefor I created a CheckBoxView.

My problem now is, that I need to pass a binding to the view. But how to do that in the ForEach? If I have a single binding its easy for me, I just generate a @State and it works. How to do it here?

List {
    ForEach(elements, id: \.self) { item in
        CheckBoxView(checked: item.checked)
    }
}

Here is the view:

struct CheckBoxView: View {
    @Binding var checked: Bool
    ....
}

Assuming your elements is state of items array, it can be

List {
    ForEach(elements.indices, id: \.self) { i in
        CheckBoxView(checked: $elements[i].checked)
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM