UITableView - 데이터를 목록형태로 보여줄수 있는, 가장 기본적인 UI컴포넌트 UITableView Delegate 프로토콜 채택 및 UITableView DataSource 를 이용해서 구현해야 한다. UITableView DataSource - 데이터를 받아 뷰를 그려주는 역할 - 테이블 뷰를 생성하고 수정하는데 필요한 정보를 테이블 뷰 객체에 제공 https://developer.apple.com/documentation/uikit/uitableviewdatasource Apple Developer Documentation developer.apple.com UITableView Delegate - 테이블 뷰의 시각적인 부분을 설정 - 행의 액션 관리 - 엑세서리 뷰 지..