1) 비교 연산자 사용 Date 타입은 Comparable 프로토콜을 채택하고 있기 때문에 비교 연산자로 비교가 가능하다.let date1 = Date()let date2 = Date().addingTimeInterval(60) // 현재 시간에서 60초 후if date1 date2 { print("date1은 date2보다 이후입니다.")} else { print("date1과 date2는 같습니다.")}2) compare() 사용let date1 = Date()let date2 = Date().addingTimeInterval(60) // 현재 시간에서 60초 후let result = date1.compare(date2)switch result {case .orderedAscending:..
에러 메세지 Thread 1: "could not dequeue a view of kind: UICollectionElementKindCell with identifier complitedDetailCollectionCell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard" 에러 메세지 해석 스레드 1: "종류의 보기를 대기열에서 제거할 수 없음: 식별자가 complitedDetailCollectionCell인 UICollectionElementKindCell - 식별자에 대한 nib 또는 클래스를 등록하거나 스토리보드에서 프로토타입 셀을 연결해야 합니다." 에러 원인에러문에 나왔..