从侧面菜单推送ViewController无法正常工作

时间:2013-11-10 11:24:08

标签: ios uiviewcontroller menu uinavigationcontroller pushviewcontroller

我正在编写一个侧边菜单,就像Facebook应用中的联系人一样。我希望当用户选择一个联系人时,菜单关闭,TopViewController推送聊天。问题是使用以下代码,它只关闭菜单。

 "Menu.m"

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
 {
    UIViewController *controller = [self.storyboard instantiateViewControllerWithIdentifier:@"chat"];
    [self.slidingViewController.topViewController.navigationController pushViewController:controller animated:YES];

    [self.slidingViewController resetTopView];
}

1 个答案:

答案 0 :(得分:-1)

这些是您要归档side menufacebook style slide menu

的好教程