如何关闭幻灯片菜单并链接回选定的标签?

时间:2018-04-09 14:31:02

标签: ios objective-c tabbar

我有幻灯片菜单视图控制器,第一项是“主页”选项。我想要做的是当我点击“主页”选项时,应用程序将重定向到第一个标签,即使在类别选项卡上也是主页。

现在,当我点击“主页”选项但是选项卡仍然保留在类别标签

时,只有幻灯片菜单隐藏

以下是菜单视图控制器中的示例代码: -

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView deselectRowAtIndexPath:indexPath animated:YES];

    if (indexPath.row == 0) { // HOW CAN I CLICK ON MENU ITEM 1 AND LINK BACK TO TAB NUMBER 1?

       [self dismissViewControllerAnimated:YES completion:^{ 
           [self.tabBarController setSelectedIndex:0]; }];

    }

enter image description here

1 个答案:

答案 0 :(得分:1)

你可以尝试

rm(list=ls())