使用 uitableviews 时如何将新视图加载到视图堆栈上

发布于 2024-11-14 09:41:03 字数 508 浏览 1 评论 0原文

我目前有一个导航项目,加载了 4 个自定义单元格,其中 UItextField 覆盖了整个单元格。我的目标是创建一个方法,当用户“着陆”事件调用我的方法将新视图加载到导航堆栈时,该方法将加载新视图。

唯一的问题是我不知道确切的代码。这是我现在所拥有的,但我弹出了几十个错误,

- (IBAction)newView{
    SelectionListDetailViewController *selection = [[SelectionListDetailViewController alloc] initWithNibName:@"SelectionListDetailViewController" bundle:nil];

[self.navigationController pushViewController:selection animated:YES];
}

我有 18 个错误,这些错误说!程序中存在“@”,

我走在正确的路径上吗?你看到我做错了什么吗?任何帮助将不胜感激。

I currently have a Navigational project loaded with 4 custom cells that have a UItextField covering the whole cell. My goal is to create a method that will load a new view when the user "touch down" event calls my method that loads a new view onto the navigation stack.

the only problem being I dont know the exact code for this. here is what I have now but I have dozens of errors popping up

- (IBAction)newView{
    SelectionListDetailViewController *selection = [[SelectionListDetailViewController alloc] initWithNibName:@"SelectionListDetailViewController" bundle:nil];

[self.navigationController pushViewController:selection animated:YES];
}

I have 18 errors that say !stray '@' in program

am I on the right path? do you see anything that I am doing wrong? any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以为你会在 2024-11-21 09:41:03

只是一个想法。尝试在使用时推动视图控制器

-(void) textFieldDidBeginEditing:(UITextField *)textField

并使用

[self.navigationController pushViewController:selection animated:YES];

确保导入必要的头文件(SelectionListDetailViewController.h)和将其引用到正确的类。

Just an idea. Try pushing the view controller while using

-(void) textFieldDidBeginEditing:(UITextField *)textField

and use

[self.navigationController pushViewController:selection animated:YES];

Make sure you import the necessary header files (SelectionListDetailViewController.h) & reference it to the right class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文