问题
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 should be fixed. Just like contacts on iOS7 below.

回答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)
来源:https://stackoverflow.com/questions/22133973/ios7-how-to-add-a-fixed-search-bar-like-contacts-on-ios7