我在我的主故事板中创建了一个简单的静态表视图,但每次我连接一个空白的UITableViewController时,静态视图都没有加载。
答案 0 :(得分:8)
从UITableViewController子类中删除numberOfSectionsInTableView()
和tableView(numberOfRowsInSection:)
的默认实现。
即。删除这些方法,因为它们返回0:
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 0
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 0
}