我想在我的UITableView的函数onReload
上运行一些代码。基本上现在我只想打印一个数组中有多少项。稍后我将根据有多少项目显示或不显示视图。
所以我希望只要UITableView刷新或重新加载或类似的东西就会运行此代码。
我怎样才能做到这一点?
答案 0 :(得分:2)
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
//dataArray is your data array
// > 10 is your condition
if dataArray.count >10{
return 0
}else{
return dataArray.count
}
}