what is the different between isSelected
method of tableviewcell and selectRow(at:animated:scrollPosition:)
of tableview when i want to set a cell to be selected?
i.e.
cell.isSelected = true
vs tableview.selectRow(at:index, animated: false, scrollPosition: .none)
I found most people use the latter,but i do not known why