使用AutoLayout可视化格式语言来布局扩展视图

时间:2015-11-24 08:10:03

标签: ios uitableview autolayout ios9 uisearchcontroller

我有一个UISearchController和UITableView,但它们在我的屏幕上显示为空白。

[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]];

不确定为什么它是空白的?搜索栏和表格视图正常声明。

0 个答案:

没有答案