gpt4 book ai didi

ios - UISearchController UISearchBar 后台

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:01:27 24 4
gpt4 key购买 nike

在 UITableView header view 中添加 UISearchController 时,无法将背景设置在 UISearchBar 后面。

第二张图是拖动到底部时的 View 。

Normal Dragging

UITableView 在 Storyboard 中设置,没有任何标题。

self.searchController = [[UISearchController alloc] initWithSearchResultsController:nil];

// Setup appearance
self.searchController.searchBar.barStyle = UIBarStyleBlack;
self.searchController.searchBar.barTintColor = BLUE;
self.searchController.searchBar.tintColor = RED;

// Setup logic
self.searchController.searchBar.scopeButtonTitles = @[ NSLocalizedString(@"students", nil), NSLocalizedString(@"professors", nil), NSLocalizedString(@"rooms", nil) ];
self.searchController.searchBar.delegate = self;
self.searchController.searchResultsUpdater = self;
self.tableView.tableHeaderView = self.searchController.searchBar;

self.searchController.dimsBackgroundDuringPresentation = NO;
self.searchController.hidesNavigationBarDuringPresentation = NO;
self.definesPresentationContext = YES;

我尝试将背景添加到 Storyboard、 super View 、UITableView,并手动添加到 UISearchBar。

更多可用代码 here .

最佳答案

你可以试试这个:

UIView* topview = [[UIView alloc] initWithFrame:CGRectMake(0, -480, self.view.frame.size.width, 480)];
topview.backgroundColor = BLUE;

[self.tableView addSubview:topview];

我已经使用 UITableViewController 进行了测试,它工作正常。

灵感来自 this answer

关于ios - UISearchController UISearchBar 后台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28714620/

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