情况......
我有UIViewController,我想以编程方式,没有任何按钮,转到我的Tab Bar Controller或我的一个Table View控制器。
这是我到目前为止所做的:
UIViewController.m
- (void)viewDidLoad
{
[super viewDidLoad];
[self dismissViewControllerAnimated:NO completion:^{
[self performSegueWithIdentifier:@"appLaunched" sender:self];}];
}
这不起作用,我做了一个segue并给了它一个id,但问题仍然存在,我的应用程序在启动时只显示一个白色屏幕并且从未进行过渡。有人可以帮帮我吗?
谢谢。
答案 0 :(得分:0)
也许尝试像
这样的东西- (void)viewDidLoad
{
[super viewDidLoad];
[self pushIt];
}
- (void)pushIt
{
[self.navigationController pushViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"appLaunched"] animated:YES];
}