美文网首页
iOS 类方法继承NSObject模态弹出

iOS 类方法继承NSObject模态弹出

作者: 张天奇天张 | 来源:发表于2019-11-08 13:44 被阅读0次

    继承于NSObject的类执行跳转到登录页面时无法触发控制器跳转

    UIViewController *RootViewController = [UIApplication sharedApplication].keyWindow.rootViewController;

    while (RootViewController.presentedViewController){

            RootViewController = RootViewController.presentedViewController;

        }

    LoginHomeViewController *login = [[LoginHomeViewController alloc] init];

    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:login];

    [RootViewController presentViewController:nav animated:YES completion:nil];

    相关文章

      网友评论

          本文标题:iOS 类方法继承NSObject模态弹出

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