我想将UISearchBar添加到已经有标题视图的UITableView。当我尝试将搜索栏添加到现有的标题视图时,它一直有效,直到我点击它,此时我得到The view hierarchy is not prepared for the constraint
,这似乎是因为搜索栏不是tableview的直接子视图所以当UISearchController尝试更新它不能的约束。
我找到的唯一方法是将表格视图标题作为搜索栏,然后一切正常,但当然我丢失了标题视图中已有的其他视图。
答案 0 :(得分:4)
为了解决这种问题,我将搜索栏放在容器UIView
中。将约束应用于此容器视图,并对容器内的搜索栏使用自动调整大小。
// Configure header view
UIView *headerView = ...
...
// Create container view for search bar
UIView *searchBarContainer = [UIView new];
searchBarContainer.translatesAutoresizingMaskIntoConstraints = NO;
[searchBarContainer addSubview:self.searchBar];
[headerView addSubview:searchBarContainer];
self.searchBar.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
// Apply constraints involving searchBarContainer
[headerView addConstraint: ...];
...
// Then add header to table view
self.tableView.tableHeaderView = headerView;