从独立类操作视图控制器类
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以正常工作,前提是屏幕上已经有
tab1
(并且设置了有效的导航控制器
)That should work fine, Provided you've already got
tab1
on the screen, (and with a workingnavigation controller
set up)