Tableview的单元格总是空的

时间:2016-03-10 04:15:02

标签: ios swift uitableview

Tableview的单元格为空。我尝试了多次,它总是为我的tableview生成空单元格。

请帮忙吗? 谢谢。

DataFormatString="Php {0:0.00}"

2 个答案:

答案 0 :(得分:1)

试试这个

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

答案 1 :(得分:0)

您已在return 0方法中提供了numberOfSectionsInTableViewnumberOfSectionsInTableView应返回值大于1的值。

如果section中只有一个UITableView,则您可以删除此方法,因为默认情况下它只会显示在section的{​​{1}}。

或者你可以试试这个。

UITableView