#はじめに
・Swift5,Xcode11.6を使用しています。
#できること
・UITableView上でCellを選択したときにゆっくりとハイライトさせる
・画面遷移先から戻ってきたときに、ゆっくりとハイライトを終わらせる
swift
override func viewWillAppear(_ animated: Bool) {
navigationController?.isNavigationBarHidden = true
//ゆっくり付けたり消したりする
if let indexPathForSelectedRow = tableView.indexPathForSelectedRow {
tableView.deselectRow(at: indexPathForSelectedRow, animated: true)
}
}