Swift代码库之searchbar固定不随tableview滚动
- 定义设置界面函数
func alertLayout(){
tableView.tableHeaderView=UIView()
tableView.estimatedSectionHeaderHeight = 50
}
- 配置tableview
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return UITableView.automaticDimension
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
return wordSearchBar
}
网友评论