I want to change the font size of TextAreaRow, so I use the code below:
descRow = TextAreaRow() { row in
row.placeholder = "Please enter something"
}.cellSetup({ (cell, row) in
cell.height = {151}
}).cellUpdate({ (cell, row) in
cell.textView.font = UIFont.pf(UIFontWeightRegular, size: 15)
})
However, it only change the font size of the textView and leave the placeholder with the default size.
I think that you can do it by setting up placeholderLabel cell's property from cellSetup or cellUpdate callback.
Thanks!
Most helpful comment
I think that you can do it by setting up
placeholderLabelcell's property fromcellSetuporcellUpdatecallback.