에러 메세지this class is not key value coding-compliant for the key listCell. 에러 메세지 해석"이 클래스는 키 'listCell'에 대해 키-값 코딩(키-값 코딩) 호환이 아닙니다." 에러 원인 listCell 이름이 이상해서 바꾸어줬는데 그 이후에 재연결을 못 해줘서 생겨난 에러 에러 해결커넥션 인스펙터에서 노란색 삼각형 되어 있는 곳(연결 안되어 있다고 알려주는 곳) 삭제하고 다시 연결!
에러 메세지The listLabel outlet from the ComplitedToDoListViewController to the UILabel is invalid. Outlets cannot be connected to repeating content. 에러 해석" ComplitedToDoListViewController 에서 UILabel로의 listLabel 아울렛 연결이 유효하지 않습니다. 아울렛은 반복되는 콘텐츠에 연결될 수 없습니다." 에러 원인진짜 간단한 문제였는데 아울렛 연결을 tableViewController 에 해줘서 발생한 에러 에러 해결제대로 된 cell에 연결해주니까 해결 됐다
6강 UIKit 프레임워크 2[수업 목표]UIScrollViewUIKickerViewUITableViewUICollectionView더보기여러 선택지에서 값을 선택할 수 있는 컴포넌트 여러 개의 열(column)과 행(row)로 구성 //UIPickerViewDataSource, UIPickerViewDelegate 를 상속받아줘야 사용 가능 pickerView.dataSource = self pickerView.delegate = self view.addSubview(pickerView) //UIPickerViewDataSource, UIPickerViewDelegate 를 상속받으면 당연히 사용해야 하는 함수 //프로토콜은 필수항목 ..