从独立类操作视图控制器类

发布于 2024-12-27 04:36:40 字数 382 浏览 1 评论 0原文

我有 2 个视图控制器类和 1 个包含视图控制器标头的独立类。 我想从第一个视图更改为另一个在我的独立班级中调用它们的视图。 我尝试这样的事情但没有机会..

    Tab1_ViewController *tab1 = [[Tab1_ViewController alloc]init];

    Tab1_Login_ViewController *tab2 = [[Tab1_Login_ViewController alloc]initWithNibName:@"Tab1_Login_ViewController" bundle:@"nil];

    [tab1.navigationController pushViewController:tab2 animated:YES];

I have 2 view controller classes and 1 independent class that i included the view controller headers.
I want to change from 1st view to another calling them in my independent class.
I try some thing like this but with no chance..

    Tab1_ViewController *tab1 = [[Tab1_ViewController alloc]init];

    Tab1_Login_ViewController *tab2 = [[Tab1_Login_ViewController alloc]initWithNibName:@"Tab1_Login_ViewController" bundle:@"nil];

    [tab1.navigationController pushViewController:tab2 animated:YES];

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

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

发布评论

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

评论(1

三生路 2025-01-03 04:36:40

这应该可以正常工作,前提是屏幕上已经有 tab1(并且设置了有效的导航控制器

That should work fine, Provided you've already got tab1 on the screen, (and with a working navigation controller set up)

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