iOS presentViewController 方法引起的问题

Posted 徐家汇123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS presentViewController 方法引起的问题相关的知识,希望对你有一定的参考价值。

有个需求,在项目中随时使用 presentViewController来显示一个界面,比如弹窗提示或者人脸解锁,都是在任何情况都可能出现的。

在presentViewController 调用前,已经有提示框了;因为系统用的是UIAlertController,这样的话是无法执行下一个弹窗的,

看了网上的方法直接获取根视图 调用,方法是可以的,但会出现之前的弹窗错位,可以尝试把之前的弹窗删除

有必要的话 删除前记录弹窗内容,解决当前的后,在弹出原来的;

 

//获取根视图

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

        UIViewController *topVC = appRootVC;

 

        if (topVC.presentedViewController) {

//有么有persentview  有了删除

            topVC = topVC.presentedViewController;

            [topVC dismissViewControllerAnimated:NO completion:nil];

        }

 

//根视图跳转

    [appRootVC presentViewController:dvc animated:YES completion:nil];

以上是关于iOS presentViewController 方法引起的问题的主要内容,如果未能解决你的问题,请参考以下文章

PresentViewController 在 iOS 中隐藏导航栏

PresentViewController iOS 上的 PushView

如何使用 presentViewController 呈现 iOS 键盘扩展

PresentViewController 与 ModalPresentationStyle “UIModalPresentationFormSheet” IOS 8

iOS presentViewController 方法引起的问题

在 iOS 上,presentViewController 会导致溢出(如堆栈溢出)吗?