2

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

1 回答 1

-1

这些是您想要存档侧菜单facebook 样式幻灯片菜单的好教程

于 2013-11-10T11:43:02.593 回答