单击表格视图单元格时滚动到顶部搜索栏控制器
scroll to top searchbarcontroller when clicked on tableview cell
当我写文本时,searchController 移动到顶部,但当我单击 tableview 单元格时,我想要相同的行为。 searchController 需要设置为 top 作为它在 appstore 应用程序上的工作。如下所示,我点击 tableview 单元格,所以我希望 searchController 移动到顶部。所以我必须在 code.thanks
中写些什么
使 UISearchBar
中的 UITextField
在您点击单元格时成为第一响应者()。
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if let searchField = searchController.searchBar.value(forKey: "searchField") as? UITextField {
searchField.becomeFirstResponder()
}
}
当我写文本时,searchController 移动到顶部,但当我单击 tableview 单元格时,我想要相同的行为。 searchController 需要设置为 top 作为它在 appstore 应用程序上的工作。如下所示,我点击 tableview 单元格,所以我希望 searchController 移动到顶部。所以我必须在 code.thanks
中写些什么使 UISearchBar
中的 UITextField
在您点击单元格时成为第一响应者()。
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if let searchField = searchController.searchBar.value(forKey: "searchField") as? UITextField {
searchField.becomeFirstResponder()
}
}