2

编辑:

我刚刚发现:如何从 UISearchBarDisplayController 结果到 detailViewController

我来看看!


我正在使用情节提要将“搜索栏和搜索显示控制器”与核心数据 fetchedResultsController 相结合。也就是说,我必须区分:

if (self.tableView == self.searchDisplayController.searchResultsTableView) {
    ...

以及我刚刚列出从数据存储中获取的结果的情况。

但是,在以下情况下,我无法获得正确的行(索引路径):

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    if ([segue.identifier isEqualToString:@"StoreDetails"]) {
        UINavigationController *navigationController = segue.destinationViewController;
        StoreDetailsTableViewController *controller = (StoreDetailsTableViewController *)navigationController.topViewController;
        controller.managedObjectContext = self.managedObjectContext;

        Store *storeToDetail = nil;
        NSIndexPath *indexPath = [self.tableView indexPathForCell:sender];  // This gives wrong row when having searched using searchDisplayController
        NSLog(@"Row: %i", indexPath.row);                                                   // row is always 0
        if (self.tableView == self.searchDisplayController.searchResultsTableView) {
            storeToDetail = [self.filteredListContent objectAtIndex:indexPath.row];
        } else {
            storeToDetail = [self.fetchedResultsController objectAtIndexPath:indexPath];
        }

         controller.storeToDetail = storeToDetail;
    }
}

之后调用:

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller       shouldReloadTableForSearchString:(NSString *)searchString
{
    [self filterContentForSearchText:searchString scope:@"All"];
    ...

和:

- (void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope
{
    [self.filteredListContent removeAllObjects];

    for (Store *store in [self.fetchedResultsController fetchedObjects])
    {
        if ([scope isEqualToString:@"All"] || [store.name isEqualToString:scope])
        {
            NSComparisonResult result = [store.name compare:searchText options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch) range:NSMakeRange(0, [searchText length])];
            if (result == NSOrderedSame)
            {
                [self.filteredListContent addObject:store];
            }
        }
    }
}

取自 Apple 的 TableSearch 示例。

最初的问题是双重的:

1) self.tableView 似乎不等于 self.searchDisplayController.searchResultsTableView 是 prepareForSegue

2) 已搜索 indexPath (row) 始终为 0。

我想我可以使用 didSelectRow... 代替或组合使用,但我相信 prepare... 应该是可能的?!此外,在尝试使用 didSelectRow 时...我确定如何将对象从相关行传递到目标控制器。也就是说,我可以在 didSelectRow... 中获得正确的 indexPath... 但我只知道如何在 preparFor... 中获得 segue 目的地

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
    Store *storeToDetail = nil;
    if (tableView == self.searchDisplayController.searchResultsTableView)
    {
        storeToDetail = [self.filteredListContent objectAtIndex:indexPath.row];
    }
    else
    {
        storeToDetail = [self.fetchedResultsController objectAtIndexPath:indexPath];
    }

    // How to get segue destination controller and set object?!
    // Before doing:
    [self performSegueWithIdentifier:@"StoreDetails" sender:self];
}

任何帮助深表感谢。也许是对展示如何组合这些东西的教程的参考。

谢谢!

4

3 回答 3

4

在这种情况下,sender参数 ofprepareForSegue:sender:设置为启动 segue 的表视图单元格。

只需向您的单元格添加一个属性来保存Store属于该单元格的属性,您无需执行任何索引路径或表格视图比较舞蹈。

你最终应该得到一些简单的东西

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    FooCell *cell = (FooCell *)[self.tableView dequeueReusableCellWithIdentifier:CELL_IDENTIFIER];
    Foo *foo = [self fooForIndexPath:indexPath];

    cell.foo = foo;
    // additional initialization

    return cell;
}

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if ([segue.identifier isEqualToString:@"view detail"]) {
        DetailViewController *destViewController = segue.destinationViewController;
        destViewController.foo = [(FooCell *)sender foo];
    }
}
于 2013-11-06T13:58:26.090 回答
1

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender

{

如果(self.filteredListContent)

{//NSLog(@"过滤后的数据";}

别的

{//NSLog(@"post all";}

}

于 2012-04-26T14:54:29.210 回答
0

您使用了错误的测试。

if (self.tableView == self.searchDisplayController.searchResultsTableView) {
  ...

这总是会失败,你在问两个不同的 tableViews 是否不同。答案始终是否定的。

但是,您可以测试发件人是否来自 searchResultsTableView。

NSIndexPath *searchIndexPathOfSelectedCell = [self.searchDisplayController.searchResultsTableView indexPathForCell:sender];

if (searchIndexPathOfSelectedCell) {
  ...
于 2014-03-28T19:12:51.940 回答