有没有办法从 appdelegate 类重定向(推送或执行 segue 等)到初始 View Controller 又名 rootViewController?我正在使用 storyboard 顺便说一句。
任何答案表示赞赏。
UP。我没有使用导航 Controller 。
Best Answer-推荐答案 strong>
UIStoryboard *storyboard = [UIStoryboard storyboardWithName"Main" bundle:nil];
UIWindow *window = [[[UIApplication sharedApplication] delegate] window];
window.rootViewController = [storyboard instantiateInitialViewController];
关于ios - 重定向到初始 View Controller ,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/18148079/
|