我有一个带有 tabbarcontroller 的故事板。选项卡栏之一有一个表格视图,我希望当用户从表格视图中连续点击时打开一个详细视图。问题是当我打开详细视图选项卡栏和导航栏隐藏...在情节提要中,我将详细视图创建为新的视图控制器,然后创建一个新文件并将其引用到详细视图类。
didselectrowatindexpath 中的代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
detalleYouTube *dvController = [[detalleYouTube alloc] init];
[self.navigationController pushViewController:dvController animated:YES];
}
先感谢您!