Tableview的单元格为空。我尝试了多次,它总是为我的tableview生成空单元格。
请帮忙吗? 谢谢。
DataFormatString="Php {0:0.00}"
答案 0 :(得分:1)
试试这个
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}
答案 1 :(得分:0)
您已在return 0
方法中提供了numberOfSectionsInTableView
。
numberOfSectionsInTableView
应返回值大于1
的值。
如果section
中只有一个UITableView
,则您可以删除此方法,因为默认情况下它只会显示在section
的{{1}}。
或者你可以试试这个。
UITableView