UITableViewController 中的 UISearchController—未选择 table 和 table 视图的行显示为灰色
UISearchController in a UITableViewController—Rows not selectable and table view is greyed out
我正在尝试让 UISearchController 在 UITableViewController 中工作。我正在以编程方式创建所有内容(即没有界面生成器)。大多数情况下一切正常,除了在搜索时,我无法 select 任何 table 单元格(从未调用 -tableView:didSelectRowAtIndexPath:
)。
但是,我认为这不是与委托有关的问题,也不是该方法未被调用的另一个常见原因;搜索时,包含搜索结果的 table 视图显示为灰色(即不活动),我相信这就是我无法 select 任何单元格的原因。
我的想法是 UISearchBar 作为第一响应者被卡住了,但我尝试了各种方法来放弃该状态 and/or 试图强制 table 视图成为第一响应者,但是所有其中有灾难性的后果。
这是我的 UITableViewController
子类的相关代码:
@interface SearchResultsTableViewController()
@property (copy, nonatomic) NSArray *searchResults;
@property (strong, nonatomic) UISearchController *searchController;
@end
@implementation SearchResultsTableViewController
- (NSArray *)searchResults
{
// Lazy array instantiation
if (!_searchResults)
{
_searchResults = [[NSArray alloc] init];
}
return _searchResults;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[self setSearchController:[[UISearchController alloc] initWithSearchResultsController:nil]];
[[self searchController] setSearchResultsUpdater:self];
[[[self searchController] searchBar] setFrame:CGRectMake(0.0f, 0.0f, CGRectGetWidth([[self tableView] frame]), 44.0f)];
[[[self searchController] searchBar] setSearchBarStyle:UISearchBarStyleMinimal];
[[[self searchController] searchBar] setPlaceholder:@"Search Presentations"];
[[[self searchController] searchBar] setDelegate:self];
[[self tableView] setTableHeaderView:[[self searchController] searchBar]];
[[self tableView] setSeparatorStyle:UITableViewCellSeparatorStyleNone];
[[self tableView] setAllowsSelection:YES];
[[self tableView] setAllowsSelectionDuringEditing:YES];
[[self tableView] setDelegate:self];
[[self tableView] setDataSource:self];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [[self searchResults] count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Search Results Cell"];
[cell setSelectionStyle:UITableViewCellSelectionStyleDefault];
[cell setUserInteractionEnabled:YES];
[[cell textLabel] setEnabled:YES];
FXIPresentation *presentation = nil;
presentation = [[self searchResults] objectAtIndex:[indexPath row]];
[[cell textLabel] setText:[[presentation title] substringFromIndex:3]];
[[cell textLabel] setTextColor:[UIColor colorWithRed:(18.0/255.0)
green:(52.0/255.0)
blue:(88.0/255.0)
alpha:1.0f]];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Omitted / Never called
}
- (void)updateSearchResultsForSearchController:(UISearchController *)searchController
{
[self setSearchResults:nil];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"title contains[c] %@", [[[self searchController] searchBar] text]];
[self setSearchResults:[[self fullResults] filteredArrayUsingPredicate:predicate]];
[[self tableView] reloadData];
}
@end
可能是因为搜索结果与您正在搜索的视图相同?尝试防止视图变暗...
self.searchController.dimsBackgroundDuringPresentation = NO;
我正在尝试让 UISearchController 在 UITableViewController 中工作。我正在以编程方式创建所有内容(即没有界面生成器)。大多数情况下一切正常,除了在搜索时,我无法 select 任何 table 单元格(从未调用 -tableView:didSelectRowAtIndexPath:
)。
但是,我认为这不是与委托有关的问题,也不是该方法未被调用的另一个常见原因;搜索时,包含搜索结果的 table 视图显示为灰色(即不活动),我相信这就是我无法 select 任何单元格的原因。
我的想法是 UISearchBar 作为第一响应者被卡住了,但我尝试了各种方法来放弃该状态 and/or 试图强制 table 视图成为第一响应者,但是所有其中有灾难性的后果。
这是我的 UITableViewController
子类的相关代码:
@interface SearchResultsTableViewController()
@property (copy, nonatomic) NSArray *searchResults;
@property (strong, nonatomic) UISearchController *searchController;
@end
@implementation SearchResultsTableViewController
- (NSArray *)searchResults
{
// Lazy array instantiation
if (!_searchResults)
{
_searchResults = [[NSArray alloc] init];
}
return _searchResults;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[self setSearchController:[[UISearchController alloc] initWithSearchResultsController:nil]];
[[self searchController] setSearchResultsUpdater:self];
[[[self searchController] searchBar] setFrame:CGRectMake(0.0f, 0.0f, CGRectGetWidth([[self tableView] frame]), 44.0f)];
[[[self searchController] searchBar] setSearchBarStyle:UISearchBarStyleMinimal];
[[[self searchController] searchBar] setPlaceholder:@"Search Presentations"];
[[[self searchController] searchBar] setDelegate:self];
[[self tableView] setTableHeaderView:[[self searchController] searchBar]];
[[self tableView] setSeparatorStyle:UITableViewCellSeparatorStyleNone];
[[self tableView] setAllowsSelection:YES];
[[self tableView] setAllowsSelectionDuringEditing:YES];
[[self tableView] setDelegate:self];
[[self tableView] setDataSource:self];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [[self searchResults] count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Search Results Cell"];
[cell setSelectionStyle:UITableViewCellSelectionStyleDefault];
[cell setUserInteractionEnabled:YES];
[[cell textLabel] setEnabled:YES];
FXIPresentation *presentation = nil;
presentation = [[self searchResults] objectAtIndex:[indexPath row]];
[[cell textLabel] setText:[[presentation title] substringFromIndex:3]];
[[cell textLabel] setTextColor:[UIColor colorWithRed:(18.0/255.0)
green:(52.0/255.0)
blue:(88.0/255.0)
alpha:1.0f]];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Omitted / Never called
}
- (void)updateSearchResultsForSearchController:(UISearchController *)searchController
{
[self setSearchResults:nil];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"title contains[c] %@", [[[self searchController] searchBar] text]];
[self setSearchResults:[[self fullResults] filteredArrayUsingPredicate:predicate]];
[[self tableView] reloadData];
}
@end
可能是因为搜索结果与您正在搜索的视图相同?尝试防止视图变暗...
self.searchController.dimsBackgroundDuringPresentation = NO;