UISearchBar animation issue
I have a UIViewController in wich I want to show a tableview with the serchBar. As Simple as That: //viewDidLoad _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH(), SCREEN_HEIGHT()) style:UITableViewStylePlain]; _tableView.delegate = self; _tableView.dataSource = self; [self.view addSubview:_tableView]; // adding uisearch bar searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)]; _tableView.tableHeaderView = searchBar; // searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self];