gpt4 book ai didi

iOS SearchBar 和 SeachDisplayController 错位

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

我需要使用搜索栏,但我使用了这段代码:

self.searchBar = [UISearchBar new];
_searchBar.frame = CGRectMake(0, 0, 200, 44);
_searchBar.searchBarStyle = UISearchBarStyleMinimal;
_searchBar.placeholder = @"Search stores";
_searchBar.delegate = self;

self.searchController = [[UISearchDisplayController alloc] initWithSearchBar:_searchBar contentsController:self];
_searchController.searchResultsDataSource = self;
_searchController.searchResultsDelegate = self;
_searchController.delegate = self;

self.definesPresentationContext = YES;
self.edgesForExtendedLayout = UIRectEdgeNone;

结果是这样的……我丢失了我的汉堡包菜单按钮,而且我无法更改搜索栏的宽度。我也有一个奇怪的差距,它似乎和我的导航栏一样大。如何找回汉堡包菜单按钮并修复奇怪的间隙?

enter image description here enter image description here

最佳答案

将以下代码放入 ViewDidLoad。它适用于 iOS 7+

 if(SYSTEM_VERSION_GREATER_THAN(@"6.1")) {
self.edgesForExtendedLayout = UIRectEdgeNone;
}

已编辑

 - (void)setActive:(BOOL)visible animated:(BOOL)animated
{
[super setActive:visible animated:animated];

[self.searchContentsController.navigationController setNavigationBarHidden: NO animated: NO];

CGRect frame = self.searchResultsTableView.frame;
frame.origin.y = CGRectGetHeight(self.searchContentsController.navigationController.navigationBar.frame);

frame.size.height = CGRectGetHeight(frame) - CGRectGetMinY(frame);

self.searchResultsTableView.frame = frame;

frame = self.searchBar.frame;
self.searchBar.frame = frame;

[self.searchContentsController.view insertSubview:self.searchBar aboveSubview:self.searchResultsTableView];

}

再次尝试实现此解决方案。

- (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller {
self.navigationController.navigationBar.translucent = YES;
}

- (void)searchDisplayControllerDidEndSearch:(UISearchDisplayController *)controller {
self.navigationController.navigationBar.translucent = NO;
}

注意:UISearchDisplayController 在 iOS 8 中已弃用。Apple Document

在 iOS8 中使用以下代码支持

searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
searchController.searchResultsUpdater = self;
searchController.dimsBackgroundDuringPresentation = NO;
searchController.hidesNavigationBarDuringPresentation = NO;
searchController.searchBar.frame = CGRectMake(self.searchController.searchBar.frame.origin.x, self.searchController.searchBar.frame.origin.y, self.searchController.searchBar.frame.size.width, 44.0);
self.tableView.tableHeaderView = self.searchController.searchBar;

您也可以下载the sample code from here .

关于iOS SearchBar 和 SeachDisplayController 错位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30509355/

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