I have a UISearchController and UITableView but they are showing up as blank on my screen.
[self.view addSubview:self.searchController.searchBar];
[self.view addSubview:self.tableView];
NSDictionary *views = @{@"searchBar": self.searchController.searchBar,@"tableView": self.tableView};
[containerView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[searchBar(>=44,<=88)]|" options:0 metrics:nil views:views]];
Not sure why it is blank? The search bar and table view are declared normally.