我正在使用情节提要构建一个应用程序。我正在使用 MFSidemenu 库来创建像 facebook 应用程序这样的侧边菜单。侧边菜单正确显示,但是当我点击侧边菜单上的单元格时,菜单不会消失,也不会加载另一个视图控制器。请注意,我正在使用情节提要。
谢谢你。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:[NSBundle mainBundle]];
AlbumsTableVIewController *AlbumsViewController = [storyboard instantiateViewControllerWithIdentifier:@"Albums"];
AlbumsViewController.title=[NSString stringWithFormat:@"Demo Controller #%d-%d", indexPath.section, indexPath.row];
NSArray *controllers = [NSArray arrayWithObject:AlbumsViewController];
self.sideMenu.navigationController.viewControllers = controllers;
[self.sideMenu setMenuState:MFSideMenuStateClosed];
}