Is there any way to know if a tableview cell is currently visible? I have a tableview whose first cell(0) is a uisearchbar. If a search is not active, then hide cell 0 via a
Swift Version:
if let indices = tableView.indexPathsForVisibleRows { for index in indices { if index.row == 0 { return true } } } return false