Eureka: How to change font/color of PushRow values

Created on 6 May 2016  路  2Comments  路  Source: xmartlabs/Eureka

Sorry for the simple question. Just need to know how to access the rows within the view segued to when clicking on the PushRow.

duplicate MultipleSelectorRow PushRow SelectableSection

Most helpful comment

Thanks man, super helpful - got this to work a treat.

For anyone else coming across this:

.onPresent { from, to in
                    to.selectableRowCellUpdate = { cell, row in
                        print("here")
                        cell.textLabel!.font = ...
                        cell.textLabel!.textColor = ...
                }
            }

All 2 comments

@stevejcox check out this issue #299.

Thanks man, super helpful - got this to work a treat.

For anyone else coming across this:

.onPresent { from, to in
                    to.selectableRowCellUpdate = { cell, row in
                        print("here")
                        cell.textLabel!.font = ...
                        cell.textLabel!.textColor = ...
                }
            }
Was this page helpful?
0 / 5 - 0 ratings