iOS7: How to add a fixed Search Bar like Contacts on iOS7?

后端 未结 1 1386
你的背包
你的背包 2021-01-19 03:39

After I search a lot of questions and answers, no good result. So I have to ask it here:

I want to add a Search Bar below the navigation bar.

This search bar

相关标签:
1条回答
  • You have a view controller. It has a main view. Inside that main view is a search bar (UISearchBar) and, below that, a table view (UITableView).

    Your view controller is embedded in a navigation controller (UINavigationController).

    UINavigationController
    
    MyViewController (UINavigationController) - child of the navigation controller
    
    UIView - main view of MyViewController
    
    |--- UISearchBar (subview of UIView)
    |
    |--- UITableView (another subview of UIView)
    
    0 讨论(0)
提交回复
热议问题