In iPhone or iPod, when we go to the page search we see only the search bar but if we type to find one application it will show the result with table view so my question is how we can do that ?

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
UISearchDisplayController is the answer for this question. This controllers comes built-in
UISearchBar.Also, this controller itself will manage hiding and unhiding (or making transparent) the tableview whenever you search in searchbar.
Here is the sample code provided by Apple which will help you.
I hope my answer will help you.