gpt4 book ai didi

ios - 使用 UISearchController 以编程方式定位 UISearchBar

转载 作者:行者123 更新时间:2023-12-01 17:30:26 36 4
gpt4 key购买 nike

我试图将我的 UISearchBar 直接放在我的 UINavigationBar 下,但我遇到了它根本没有出现的问题。我正在使用 iOS8 的新 searchController。

 self.searchController = [[UISearchController alloc] initWithSearchResultsController:searchResultsController];
self.searchController.searchResultsUpdater = self;
self.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.salesTableView.tableHeaderView = self.searchController.searchBar;

目前我正在使用它正确地将它添加到我的 UITableView 标题中,但问题是它与表格一起滚动,这不是我想要的。我希望它在我的桌面 View 上方,所以它会粘住并尝试了这个,但它现在似乎已经消失了,除非我没有使用正确的
值(value)观?
 self.searchController = [[UISearchController alloc] initWithSearchResultsController:searchResultsController];
self.searchController.searchResultsUpdater = self;
self.searchController.searchBar.frame = CGRectMake(0, 0, self.searchController.searchBar.frame.size.width, 44.0);
// self.salesTableView.tableHeaderView = self.searchController.searchBar;

最佳答案

因为原点是(0,0),所以会被状态栏和导航栏隐藏。如果更改为:您应该会看到搜索栏:

self.searchController.searchBar.frame = CGRectMake(0, 64, self.searchController.searchBar.frame.size.width, 44.0);

我有两个解决方案。我将向您展示一种简单的方法(您也可以使用 Storyboard):在您的 ViewController 中创建一个 UIView,命名为 searchBarView ;添加 self.searchController.searchBar进入 searchBarView ;添加 searchBarView到你的 ViewController。
UIView *searchBarView = CGRectMake(0, 64, self.searchController.searchBar.frame.size.width, 44);
[searchBarView addSubView:self.searchController.searchBar];
[self.view addSubView:searchBarView];

我假设您设置了搜索 Controller self.searchController.searchBar.sizeToFit()在 viewDidload.如果是通用应用程序,则需要添加此方法(至少在我的情况下使一切正常):
- (void)viewDidLayoutSubviews {
// you could check
// if (IS_IPAD || (IS_IPHONE_6PLUS && UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation)))
[self.searchController.searchBar sizeToFit];
}

这是我在stackoverflow上的第一个答案。希望对您有所帮助^^。

关于ios - 使用 UISearchController 以编程方式定位 UISearchBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26639791/

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