gpt4 book ai didi

objective-c - 在编辑模式下将 UISearchBar 与 UITableView 一起使用时,搜索结果不处于编辑模式

转载 作者:可可西里 更新时间:2023-11-01 05:41:47 26 4
gpt4 key购买 nike

我有一个 TableView Controller ,它实现了 UISearchBarDelegate 和 UISearchDisplayDelegate。我有一个按钮可以为我的表格 View 切换编辑 View 。当处于编辑模式时,用户可以选择多行并复制它们、删除它们等。如果我尝试在搜索栏中输入内容,而 TableView 处于编辑模式,shouldReloadTableForSearchString 方法会触发,然后我会重新 -使用更新的谓词从核心数据中获取我的数据,并从函数返回 YES,表示应重新加载 TableView 。当显示过滤结果时,它们不处于编辑模式,即使在 cellForRowAtIndexPath 中我可以看到 tableView isEditing 是 YES。我看不到多选的圆圈。在选择多个项目之前,我需要能够让用户过滤他们的列表,以便显着限制结果。

为什么结果没有显示在编辑模式中?

编辑模式,不使用搜索栏:

edit mode, without using the search bar

在编辑模式下搜索会产生非编辑模式且未设置样式的结果:

Searching in edit mode produces results that are not in edit mode and not styled

提前致谢,亚历克斯

这里是 shouldReloadTableForSearchString 方法:

    - (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
NSPredicate *predicate = nil;
if ([searchString length])
{
NSArray* filteredTags = nil;
if ([searchString length] < 3)
{
// Check for tags starting with 1 or 2 characters.
filteredTags = [[tagResultsController fetchedObjects] filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(TagEntity* te, NSDictionary *bindings)
{
if ([[[te.name lowercaseString] substringToIndex:[searchString length]] isEqualToString:[searchString lowercaseString]])
return YES;

return NO;
}]];

}
else
{
// Check for tags with 3 or more consecutive characters anywhere in name
filteredTags = [[tagResultsController fetchedObjects] filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(TagEntity* te, NSDictionary *bindings)
{
if ([[te.name lowercaseString] rangeOfString:[searchString lowercaseString]].location != NSNotFound)
return YES;

return NO;
}]];
}

// OR ANY(self.tags) in %@
predicate = [NSPredicate predicateWithFormat:
@"ANY(self.songlists) in %@ AND (name contains[cd] %@ OR artist_name contains[cd] %@ OR number = %@ OR ANY(tag_entities) in %@)",
currentSonglist.songs, searchString, searchString, searchString,filteredTags];

[self.fetchedResultsController.fetchRequest setPredicate:predicate];

NSError *error = nil;
if (![[self fetchedResultsController] performFetch:&error]) {
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}
// Return YES to cause the search result table view to be reloaded.

}

return YES;

这是 .h 文件中我的核心数据 TableView 的标题:

    @interface SonglistTVC : CoreDataTableViewController
<UISearchBarDelegate,
UISearchDisplayDelegate,
UIPickerViewDataSource,
UIPickerViewDelegate,
UIActionSheetDelegate,
AddSongTVCDelegate,
ListSelectorDelegate>

我知道它正在使用我的 TableView Controller ,因为 cellForRowAtIndexPath 和 didSelectRowAtIndexPath 都在触发。我可以在内部进行调试,并且在 TableView 上将 isEditing 设置为 YES。但是 TableView 并没有反射(reflect)出它正确的编辑模式样式。

这里是 cellForRowAtIndexPath,它在搜索框中输入字母后立即触发。

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *identifier = @"SongCell";
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:identifier];

Song* song = [self.fetchedResultsController objectAtIndexPath:indexPath];

UILabel* artistLabel = (UILabel*)[cell viewWithTag:ARTIST_NAME_TAG];
UILabel* songLabel = (UILabel*)[cell viewWithTag:SONG_NAME_TAG];
UILabel* keyLabel = (UILabel*)[cell viewWithTag:KEY_TAG];
UILabel* numberLabel = (UILabel*)[cell viewWithTag:NUMBER_TAG];

//artistLabel.font = [UIFont systemFontOfSize:17];
[artistLabel setText: song.artist_name];
[songLabel setText: song.name];
//[songLabel setFont:[UIFont systemFontOfSize:16]];
[keyLabel setText: song.key];
[numberLabel setText: [NSString stringWithFormat:@"%@", song.number]];


UIView *backView = [[UIView alloc] initWithFrame:CGRectMake(0,0,320,61)];
UIView *selectedBackView = [[UIView alloc] initWithFrame:CGRectMake(0,0,320,61)];

CAGradientLayer *backGradient = [[CAGradientLayer alloc] init];
backGradient.frame = cell.layer.bounds;

CAGradientLayer *selectedGradient = [[CAGradientLayer alloc] init];
selectedGradient.frame = cell.layer.bounds;

if (song.status == [NSNumber numberWithUnsignedInt: 1])
{
[backGradient setColors:[NSArray arrayWithObjects:
(id)[[UIColor colorWithRed:240.0f/255.0f green:200.0f/255.0f blue:200.0f/255.0f alpha:1.0f] CGColor],
(id)[[UIColor colorWithRed:1 green:1 blue:1 alpha:1.0f] CGColor],
nil]];
}
else if (song.status == [NSNumber numberWithUnsignedInt: 2])
{
[backGradient setColors:[NSArray arrayWithObjects:
(id)[[UIColor colorWithRed:240.0f/255.0f green:240.0f/255.0f blue:200.0f/255.0f alpha:1.0f] CGColor],
(id)[[UIColor colorWithRed:1 green:1 blue:1 alpha:1.0f] CGColor],
nil]];
}
else if (song.status == [NSNumber numberWithUnsignedInt: 3])
{
[backGradient setColors:[NSArray arrayWithObjects:
(id)[[UIColor colorWithRed:200.0f/255.0f green:240.0f/255.0f blue:200.0f/255.0f alpha:1.0f] CGColor],
(id)[[UIColor colorWithRed:1 green:1 blue:1 alpha:1.0f] CGColor],
nil]];
}
[selectedGradient setColors:[NSArray arrayWithObjects:
(id)[[UIColor colorWithRed:255.0f/255.0f green:160.0f/255.0f blue:60.0f/255.0f alpha:1.0f] CGColor],
(id)[[UIColor colorWithRed:1 green:1 blue:1 alpha:0.7f] CGColor],
nil]];


if (![self.tableView isEditing] )
{
cell.backgroundView = backView;
[cell.backgroundView.layer insertSublayer:backGradient atIndex:1];

cell.selectedBackgroundView = selectedBackView;
[cell.selectedBackgroundView.layer insertSublayer:selectedGradient atIndex:1];
}
else
{
//cell.backgroundView = backView;
//[cell.backgroundView.layer insertSublayer:backGradient atIndex:1];
cell.selectedBackgroundView = backView;
[cell.selectedBackgroundView.layer insertSublayer:backGradient atIndex:1];
}

for (NSIndexPath* ip in selectedIndexes)
{
[self.tableView selectRowAtIndexPath:ip animated:YES scrollPosition:UITableViewScrollPositionNone];
}

[sortOrderPicker reloadAllComponents];
[self sendPickerDownAnimated:NO];

return cell;

我使用分段控件内的按钮来打开/关闭编辑:

    - (IBAction)segmentChanged:(id)sender{
UISegmentedControl* sg = (UISegmentedControl*)sender;
if (sg.selectedSegmentIndex == 0)
{
// Edit
if (![self.tableView isEditing])
{
[self.tableView setEditing:YES animated:YES];
[self.navigationController setToolbarHidden:NO animated:YES];
}
else
{
[self.tableView setEditing:NO animated:YES];
[self.navigationController setToolbarHidden:YES animated:YES];
selectedIndexes = nil;
}
[self.tableView reloadData];
}
else
{
// Sort
if (pickerShown)
[self sendPickerDownAnimated:YES];
else
[self bringPickerUpAnimated:YES];
}

最佳答案

问题在于 UISearchDisplayController 会自动为您做很多事情。它创建自己的 TableView 来显示搜索结果,并管理该 TableView 。您可以将自己设置为该 TableView 的数据源和委托(delegate),默认情况下会自动为您完成,但这不是您的 TableView ,您无法控制它。如果你想要更好的方法是指定这是什么 TableView ,你需要设置搜索显示 Controller 的 searchResultsTableView;或者您可以在事情进行时获得对它的引用(例如,通过 UISearchDisplayController 自己的委托(delegate)方法)。但即便如此,您也不会成为管理结果 TableView 的 UITableViewController;这完全是 UISearchDisplayController 内部的。如果您不喜欢那样,一个简单的解决方案是:不要使用 UISearchDisplayController - 考虑另一个界面。

关于objective-c - 在编辑模式下将 UISearchBar 与 UITableView 一起使用时,搜索结果不处于编辑模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14151133/

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