흔히 사용되는 Row click event에는 tableView(_, didSelectRowAt: IndexPath)
등의 메서드가 활용됩니다
Accessory click event도 유사하게 TableViewDelegate의 메서드를 활용하면 됩니다
tableView(_, accessoryButtonTappedForRowWith: IndexPath)
를 활용합니다
❗️주의❗️
해당 메서드는 Detail 관련 Accessory에 의해서만 trigger됩니다
Disclosure indicator와 Checkmark는 터치를 인식하지 않습니다