我正在编写一个侧边菜单,就像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];
}