UISearchController search bar overlap first cell when active

前端 未结 7 2449
慢半拍i
慢半拍i 2020-12-21 08:52

I am using UISearchController to search for data in my tableview. I am not using table view controller. I would like to hide the navigation bar when my search b

7条回答
  •  攒了一身酷
    2020-12-21 09:34

    Not the best solution but just to workaround.

    -(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { return searchController.isActive ? 20.0f : 0.0f; }

提交回复
热议问题