我爱编程IOS

whose view is not in the window

2018-02-22  本文已影响0人  开心就好2008

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

            // 在这里加一个这个样式的循环

            while(topRootViewController.presentedViewController)

            {

                // 这里固定写法

                topRootViewController = topRootViewController.presentedViewController;

            }

            // 然后再进行present操作

            [topRootViewController presentViewController:picker animated:YEScompletion:nil];

上一篇下一篇

猜你喜欢

热点阅读