gpt4 book ai didi

iphone - Xcode 4.5 的 Storyboard

转载 作者:行者123 更新时间:2023-11-28 18:39:44 25 4
gpt4 key购买 nike

亲们,我需要有关 Storyboard 的帮助。我有一个带有表和 View 的 Storyboard ,我想单击一个单元格并对 View 进行事务处理。我将 DetalheMeuPostoAmigo 设置为 View 并在 didSelectRowAtIndexPath 中调用它,如下面的代码。

当我运行应用程序时,我没有收到任何错误,但事务也不起作用。我用 alert 测试并没有问题。我检查了很多次代码...

 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];
}

Link to Storyboard Image

最佳答案

我不是这方面的专家,但尝试使用现有的 VC:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
YOURCURRENTVC *detalhesMeuPostoAmigoVC = [storyboard instantiateViewControllerWithIdentifier:@"DetalheMeuPostoAmigo"];
[self.navigationController pushViewController:detalhesMeuPostoAmigoVC animated:YES];
}

关于iphone - Xcode 4.5 的 Storyboard,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12711116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com