-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Labels
Description
Hi there,
I might be doing it wrong, but when I set up one of my splitcells, the .cellSetup method does not appear to be applied to my splitCell.
e.g. the cell background colour for my right row will stay white. This is how I normally set up cells that are not in a splitCell configuration.
<<< SplitRow<SwitchRow, TextRow>(){
$0.rowLeftPercentage = 0.2
$0.rowLeft = SwitchRow() {
$0.value = false
$0.tag = "isEventSet"
}
$0.rowRight = TextRow(){ row in
row.title = "TEST"
row.tag = "TEST"
}.cellSetup { cell, row in
cell.backgroundColor = .red
}
}