구현 내용 컬렉션 뷰의 아이템을 길게 누르면 "Download" 라는 글과 함께 메서드가 호출된다. 구현 코드 해당 컬렉션 뷰의 아이템들은 Home 뷰에 있는 테이블에 등록된 것이다. 해당 컬렉션 뷰 셀이 있는 파일 내에 아래 코드를 추가한다. import UIKitclass CollectionViewTableViewCell: UITableViewCell { ... private func downloadTitleAt(indexPath: IndexPath) { DatePersistenceManager.shared.downloadTitleWith(model: titles[indexPath.row]) { result in switch r..