0

我有一个基于 UITabBarController 模板的应用程序,其中第一个选项卡是 UITableViewController,单元格中有自定义按钮。我需要一个单元格中的一个按钮来调用父 UITabBarController 中的特定选项卡。我在 didSelectRowAtIndexPath 中使用此代码:

case 5:
            NSLog(@"Search");
            [tableView deselectRowAtIndexPath:indexPath animated:YES];
            // Get UITabBar instance and send it message
            UITabBarController *tabBar = (UITabBarController*)[self parentViewController];
            [tabBar setSelectedIndex:1];

            break;

当我点击这一行时,应用程序在控制台中没有任何日志的情况下崩溃。我在 UITableViewController 中调用它,这是 UITabBarController 中的第一个选项卡。

PS 我还想避免用户点击时在此单元格上出现蓝色选择。所以我添加了这段代码:

- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    switch (indexPath.row) {
        case 1:
            return nil;
            break;
    }
}

但是当我点击它时它仍然选择蓝色。它们可能是相关的问题吗?

4

1 回答 1

1
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView deselectRowAtIndexPath:indexPath animated:NO];
    UITabBarController *tabController = (UITabBarController *) UIApplication.sharedApplication.keyWindow.rootViewController;
    [tabController setSelectedIndex:1];
}

第一条消息将取消选择该行,避免蓝色选择。

由于您的应用程序是基于选项卡的,因此键窗口的根控制器始终是UITabBarController.

于 2014-12-12T20:02:49.957 回答