2

所以我试图将搜索栏与 iOS7 中的 tableview 导航栏结合起来。

我打电话给 self.searchDisplayController.displaysSearchBarInNavigationBar = YES;它看起来不错。

但是,当我点击表格视图中的任意位置时,搜索栏就会被激活。基本上我无法定期单击表格单元格。

我想知道我到底错过了什么?

作为参考,与 tableview 相关的代码如下所示:(我使用故事板来处理点击逻辑)

    #pragma mark - Table view delegate method

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    return [[[UILocalizedIndexedCollation currentCollation] sectionTitles] objectAtIndex:section];
}

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
    return [[UILocalizedIndexedCollation currentCollation] sectionIndexTitles];
}

- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
    return [[UILocalizedIndexedCollation currentCollation] sectionForSectionIndexTitleAtIndex:index];
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    if (tableView == self.searchDisplayController.searchResultsTableView) {
        return 1;
    } else {
        return [[[UILocalizedIndexedCollation currentCollation] sectionTitles] count];;
    }
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (tableView == self.searchDisplayController.searchResultsTableView) {
        return [searchResults count];
    } else {
        return [self.contacts[section] count];
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"contactCell";
    UITableViewCell *cell;
    Contact *contact;

    if (tableView == self.searchDisplayController.searchResultsTableView) {
        cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        contact = searchResults[indexPath.row];
    } else {
        cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
        contact = [[self.contacts objectAtIndex:indexPath.section] objectAtIndex:indexPath.row];
    }

    UILabel *nameLabel = (UILabel *)[cell viewWithTag:7];
    UIImageView *starMark = (UIImageView *)[cell viewWithTag:9];

    NSString *nameString = [NSString stringWithFormat:@"%@ %@",contact.firstName, contact.lastName];

    if ([contact.star isEqual:@0]) {
        starMark.hidden = YES;
    } else {
        starMark.hidden = NO;
    }

    [nameLabel setText:nameString];

    return cell;
}

segue 方法在这里定义:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if ([segue.identifier isEqualToString:@"pushContactDetail"]) {
        NSIndexPath *indexPath;
        Contact *contact;
        if (self.searchDisplayController.active == YES) {
            indexPath = [self.searchDisplayController.searchResultsTableView indexPathForSelectedRow];
            contact = searchResults[indexPath.row];
        } else {
            indexPath = [self.tableView indexPathForSelectedRow];
            contact = [[self.contacts objectAtIndex:indexPath.section] objectAtIndex:indexPath.row];
        }
        //get indexPath from selected sushi

        //initialize the detail view controller and push it
        CIContactViewController *destViewController = segue.destinationViewController;
        destViewController.contact = contact;
    }
}
4

0 回答 0