I want to use subtitle style of table view cell (not the custom one), and also I need to have an UISwitch
in the right side of the cell.
if the name of the cell is TitleCell
I know I can add a UISwitch programmatically to it by using this line of code:
TitleCell.accessoryView = UISwitch()
But can I have access to this UISwitch
and using it as an outlet and giving it an action?
Thanks for your help in advance