gpt4 book ai didi

ios - UITableViewController 中的 UISearchBar?

转载 作者:可可西里 更新时间:2023-11-01 04:04:45 24 4
gpt4 key购买 nike

我想在我的 TableView 中添加一个 SearchBar。我只是将 UISearchBar 拖到 IB 中的 UITableView 的标题中,它随我的 UITableView 一起滚动。

我现在改为使用 UITableViewController,当我在标题中拖动 UISearchBarUITableViewController 随附的 UITableView 的一部分,它根本不显示。

有什么技巧吗?

亲切的问候

最佳答案

您可以通过编程方式完成

UISearchBar *tempSearchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 0)];
self.searchBar = tempSearchBar;
[tempSearchBar release];
self.searchBar.delegate = self;
[self.searchBar sizeToFit];
self.tableView.tableHeaderView = self.searchBar;

希望这对您有所帮助。

关于ios - UITableViewController 中的 UISearchBar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4178707/

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