gpt4 book ai didi

ios - tableView.tableHeaderView = UISearchDisplayController.searchBar;并调用 setContentInset : ; searchBar is not drawn when i scroll the table

转载 作者:行者123 更新时间:2023-11-29 12:31:16 25 4
gpt4 key购买 nike

tableView.tableHeaderView = UISearchDisplayController.searchBar;并调用 setContentInset: ;

当我滚动表格时,没有绘制 searchBar。我想知道这里发生了什么。

这是我的代码:

- (void)viewDidLoad {
[super viewDidLoad];

UISearchBar * searchBar =[[UISearchBar alloc]initWithFrame:CGRectMake(0, 0, 320, 44)];
self.tableView.tableHeaderView=searchBar;

self.searchController =[[UISearchDisplayController alloc]initWithSearchBar:searchBar contentsController:self];

//
//(refreshing)
//
[self.tableView setContentInset:UIEdgeInsetsMake(128, 0, 0, 0)];
}

Picture

请帮帮我,谢谢

最佳答案

- (instancetype)init
{
self = [super init];
if (self) {
for (UIView * view in self.subviews) {
view.clipsToBounds=NO;
}
}
return self;
}

制作自定义 UISearchBar 并覆盖 init 方法

关于ios - tableView.tableHeaderView = UISearchDisplayController.searchBar;并调用 setContentInset : ; searchBar is not drawn when i scroll the table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27616007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com