伙计们,我需要有关 Storyboard 的帮助。我有一个带有表格和视图的情节提要,我想单击一个单元格并对视图进行事务处理。我将 DetalheMeuPostoAmigo 设置为 View 并在 didSelectRowAtIndexPath 中调用它,如下代码所示。
当我运行应用程序时,我没有收到任何错误,但事务也不起作用。我用警报进行了测试并且做得很好。我多次查看代码...
Top10.m
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
DetalheMeuPostoAmigo *detalhesMeuPostoAmigoVC = [storyboard instantiateViewControllerWithIdentifier:@"DetalheMeuPostoAmigo"];
[self.navigationController pushViewController:detalhesMeuPostoAmigoVC animated:YES];
}