在我搜索了很多问题和答案之后,没有好结果。 所以我在这里问一下:
我想在导航栏下方添加一个搜索栏。
此搜索栏应该是固定的。 就像下面iOS7上的联系人一样。
任何人都可以帮我搞清楚吗?
答案 0 :(得分:5)
你有一个视图控制器。它有一个主要的观点。在主视图中是一个搜索栏(UISearchBar),下面是一个表视图(UITableView)。
您的视图控制器嵌入在导航控制器(UINavigationController)中。
UINavigationController
MyViewController (UINavigationController) - child of the navigation controller
UIView - main view of MyViewController
|--- UISearchBar (subview of UIView)
|
|--- UITableView (another subview of UIView)