Swift UITableView On Reload Data

时间:2017-05-11 00:59:05

标签: ios swift uitableview

我想在我的UITableView的函数onReload上运行一些代码。基本上现在我只想打印一个数组中有多少项。稍后我将根据有多少项目显示或不显示视图。

所以我希望只要UITableView刷新或重新加载或类似的东西就会运行此代码。

我怎样才能做到这一点?

1 个答案:

答案 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
    }

}