美文网首页iOS Development
推送----push到指定页面

推送----push到指定页面

作者: 71150ce14a00 | 来源:发表于2016-07-05 13:30 被阅读29次

因为推送代码一般都写在appdelegate里边,因为没有导航,所以模态比较简单,今天我们就说说push那点事儿。

UINavigationController *navigationController = (UINavigationController *)self.window.rootViewController;

UITestViewController *TestViewController = [navigationController.storyboard instantiateViewControllerWithIdentifier:@"UITestViewController"];

[navigationController pushViewController:TestViewControlleranimated:YES];

关注微信公众号:

相关文章

网友评论

    本文标题:推送----push到指定页面

    本文链接:https://www.haomeiwen.com/subject/nlmhjttx.html