在viewDidAppear(Storyboard)之后更改视图

时间:2013-09-02 10:03:18

标签: iphone view storyboard

如何在视图中的viewDidAppear:(BOOL)动画函数中更改View(带代码)(将View切换到Code中命名的View)? 我使用故事板。

编辑:

View_Info *Info =[[View_Info alloc]initWithNibName:nil bundle:nil];
[self presentModalViewController:Info animated:NO];

无错误警告:

“不推荐使用PredentModalViewController动画:首先在iOS6中弃用

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

你可以尝试这个,并根据你的要求修改这段代码,如果工作,不要忘记接受这个答案和upvote :)谢谢。

AppDelegate* appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
MainViewController *mvc = (MainViewController *)appDelegate.window.rootViewController;    
LoginViewController *lvc = [mvc.storyboard instantiateViewControllerWithIdentifier:@"LoginViewController"];
[currentVC presentModalViewController:lvc animated:YES];