UITableView - 如何使用表格滚动搜索栏

时间:2022-12-05 22:08:43

How can I make the search bar to scroll together with the table view? When I scroll my table view I want my search bar to go with it and disappear. I want to have done something similar to contacts app on the iPhone.

如何使搜索栏与表格视图一起滚动?当我滚动我的表格视图时,我希望我的搜索栏随之而来并消失。我想做一些与iPhone上的联系人应用程序类似的东西。

2 个解决方案

#1


6  

You can place your searchbar in the tableView's header row. This will make it part of the tableView.

您可以将搜索栏放在tableView的标题行中。这将使它成为tableView的一部分。

#2


1  

Set up an empty table section, above or ahead of all other sections in your table view. Set this section's header to be your search bar view.

在表视图中的所有其他部分之上或之前设置一个空表部分。将此部分的标题设置为搜索栏视图。

#1


6  

You can place your searchbar in the tableView's header row. This will make it part of the tableView.

您可以将搜索栏放在tableView的标题行中。这将使它成为tableView的一部分。

#2


1  

Set up an empty table section, above or ahead of all other sections in your table view. Set this section's header to be your search bar view.

在表视图中的所有其他部分之上或之前设置一个空表部分。将此部分的标题设置为搜索栏视图。