보통 앱을 사용하다 보면 위로 슬라이드해서 새로고침 하는 부분이 많습니다.(ex. 유튜브, 당근마켓) 그래서 CollectionView에서 새로고침 하는 방법에 대해 알아보겠습니다. (TebleView도 동일합니다.) 기본적으로 CollectionView에는 기본적으로 refreshControl이라는 프로퍼티가 있어서 여기에 refreshController를 만들고 넣어주면 됩니다. 1. refreshController 만들기 // 코드로 refreshControl 선언해서 만들기 private lazy var refresh: UIRefreshControl = { let refreshControl = UIRefreshControl() refreshControl.addTarget(self, action: ..