你能帮忙从一个 UIViewController 重定向到另一个吗?我有 2 个 UIViewController(ViewController 和 OverViewController)。我不知道如何从 ViewController 重定向到 OverViewController。我试过 [self performSegueWithIdentifier"OverViewController"sender:nil];
但它只显示错误
Receiver (
我将 Storyboard id 设置为 OverViewController
它对我有用。
UIStoryboard *storyboard = [UIStoryboard storyboardWithName"Main" bundle:nil];
UIViewController *viewController = (UIViewController *)[storyboard instantiateViewControllerWithIdentifier"OverViewController"];
[self presentViewController:viewController animated:YES completion:nil];
关于ios - 以编程方式从 UIViewController 重定向到另一个 UIViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26955133/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |