【发布时间】:2023-04-03 21:55:02
【问题描述】:
有谁知道点击搜索栏后如何过度调整暗黑色的大小?
当我点击取消时遇到问题,tableview 将消耗然后动画消失。
我用它来调整我的结果表视图的大小。
-(void)searchDisplayController:(UISearchDisplayController *)controller didShowSearchResultsTableView:(UITableView *)tableView {
tableView.frame =fTableView.frame;//CGRectMake(26, 100, 280, 310); //fTableView.frame;
tableView.backgroundColor = [UIColor colorWithRed:243.0/255.0 green:236.0/255.0 blue:212.0/255.0 alpha:1];
}
点击搜索栏时,灰色叠加层已满,而不是我定义的大小。
当点击取消按钮时,视图将展开。
【问题讨论】:
-
Tom Swift 的这个回答解决了我的问题:stackoverflow.com/a/4128659/675486
标签: iphone ios xcode uisearchbar uisearchdisplaycontroller