Hi there
In themeTableView
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if (indexPath.section == 0 && indexPath.row == 0) {
HappyView().view.backgroundColor = UIColor.systemBlue
}
if (indexPath.section == 0 && indexPath.row == 1) {
HappyView().view.backgroundColor = UIColor.systemGreen
}
}
But the HappyView background color didn't change after I selected the cell and navigated to the HappView.