2017-05-12 11 views
0

내 스토리 보드에 Table View Controller 및 Designed Static Custom Cell을 삽입 했으므로 새로운 사용자 정의 Swift 파일 (테이블 뷰 컨트롤러 클래스)을 만들고 테이블보기 컨트롤러에 추가하면 테이블 섹션은 응용 프로그램을 배포 할 때 사라집니다.Xcode, Swift, Table View 컨트롤러

답변

0

귀하의 문제는 위임자 인 것으로 보입니다. 템플릿에 제공되며이 상태에서 정적 셀을 제거합니다. 따라서 정적 셀만 사용하는 경우에는이 함수를 제거하고 그렇지 않으면 동적 셀에서도 작동하도록 수정하십시오.

// MARK: - Table view data source 

override func numberOfSections(in tableView: UITableView) -> Int { 
    // #warning Incomplete implementation, return the number of sections 
    return 0 
} 

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 
    // #warning Incomplete implementation, return the number of rows 
    return 0 
}