Get last cell in a UITableview section

后端 未结 7 706
心在旅途
心在旅途 2021-01-17 10:17

I have a section in UITableView which has multiple rows. I wish to get the last row or the last cell of the section to add a disclosure indicator on it.

One way I am

7条回答
  •  旧巷少年郎
    2021-01-17 10:20

    Swift 4 version:-

      let totalRow =
                tableView.numberOfRows(inSection: indexPath.section)
            if(indexPath.row == totalRow - 1)
            {
                return
            }
    

提交回复
热议问题