0

我试图弄清楚如何实现一个新的搜索系统。我的问题是我需要通过查询远程数据库来进行初始搜索。然后我希望能够对结果进行本地搜索。简单的解决方案是有 2 个搜索栏,但这看起来很糟糕:P

所以我检查了亚马逊的应用程序。当您进行搜索时,您会立即看到 resultsView(这就是我所说的),但搜索框会从顶部下降,并且白色背景会淡出 resultsView。然后,您可以对他们的数据库执行查询,视图立即消失,您又回到了结果。

有谁知道他们是如何让搜索栏从顶部降下来的?它是另一个视图还是只是一个动画?

谢谢

4

1 回答 1

0

It looks like they added a search bar in a UIView and animate the UIView from top to bottom. I also think they actually present a new controller that animate the search view and present a tableView for the search result from 0 opacity to 1.

于 2012-09-26T15:06:04.157 回答