刚开始,我知道,只有一行数据,就填个1.
不行滴。
崩了。
填0,不崩,理所当然滴吗,不显示数据。
应该加 条件判断。
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// if self.model.data?.historyCustomMadeDinner?.count != nil {
if models.count != 0 {
return models.count
}
// }
return 0//self.dataArray.count//+1
// return (self.model.data?.historyCustomMadeDinner?.count)!
//还能这样子啊
}