Hello!
I am using a Row with UISwitch as seen in the example project here.
However when scrolling down the table and then up again, the switch loses its on state.
Tested straight from example project:

Is this due to cell reusing? How can I preserve switch state on scroll?
Thanks
EDIT: This is the way I'm using it. Am I doing something wrong?
var value: Bool = false
Row(text: "UISwitch", accessory: .switchToggle(value: self.value) { [unowned self] newValue in
self.value = newValue
})