0

嗨,我的视图控制器上有一个 uitableview,当按下一个单元格时,我想转到另一个视图控制器,我阅读了一些教程,但都来自表视图控制器。这是我的代码,当我按下单元格时它什么也没做。

编辑:我决定在单元格上创建一个自定义按钮,然后从那里转到详细视图

这是我放在按钮上的内容,第二行出现线程 1: breakpoint 1.1 错误:

- (IBAction)buttonSelected3:(id)sender {
UIStoryboard *storyBoard; storyBoard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];

InfoFarmaciaViewController *vc = (InfoFarmaciaViewController *)[storyBoard instantiateViewControllerWithIdentifier:@"InfoFarmaciaViewController"];

[self.navigationController pushViewController:vc animated:NO];}
4

2 回答 2

0

你为此使用故事板吗?- 我认为不会,将您的观点更改为情节提要并执行以下操作:

UIStoryboard *storyBoard; storyBoard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil];

CustomViewController *vc = (CustomViewController *)[storyBoard instantiateViewControllerWithIdentifier:@"idofthestoryboardview"];

[self.navigationController pushViewController:vid.fileViewController 动画:YES];

于 2013-06-07T01:19:58.970 回答
0

您不必释放变量,ARC 会处理这个问题。只是删除那条线?并且不要将其设置为空。只需推动它,然后你就完成了。

于 2013-06-06T21:44:50.433 回答