iOS:只能从主线程使用UIWindow.rootViewController

时间:2019-09-05 16:13:06

标签: ios swift uiapplication dispatch-async rootviewcontroller

使用

时遇到问题
if let wd = UIApplication.shared.delegate?.window {
            var vc = wd!.rootViewController

如果我将这段代码放入Dispatch中,则警告消息消失,但是应用程序无法正确显示。 如果我删除该调度,则会收到警告消息。

  

UIWindow.rootViewController必须仅在主线程中使用

AND

  

UIApplication.delegate必须仅在主线程中使用

该类专门用于通过progressBar下载。

      public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
            print("Download finished: \(location)")
...
 do { 
            let result =  try FileManager.default.replaceItemAt(URL(fileURLWithPath: Constants.Path.temp.stringByAppendingPathComponent(path: "temp.zip")), withItemAt: URL(fileURLWithPath: location.path))

            let source = Constants.Path.tempZipFile
            let destination = Constants.Path.temp.stringByAppendingPathComponent(path: "dezipped")
            var myDict = [String:Any]()
            myDict["source"] = source
            myDict["destination"] = destination


            DispatchQueue.main.async { //IF I REMOVE THIS => PB OR THREAD IN MAIN
            if let wd = UIApplication.shared.delegate?.window {
                var vc = wd!.rootViewController
                if(vc is UINavigationController){
                    vc = (vc as! UINavigationController).visibleViewController

                }

                if(vc is WebViewController){
                    NotificationCenter.default.post(name: .DeflatSynchroFilesWebView, object: myDict, userInfo: nil)
                }
                else
                {
                    NotificationCenter.default.post(name: .DeflatSynchroFiles, object: myDict, userInfo: nil)
                }
            }
            }
        } catch let writeError as NSError {
            print("error writing file temp.zip to temp folder")
        }

enter image description here 如何在不影响我的应用程序的情况下删除警告?

谢谢。

1 个答案:

答案 0 :(得分:0)

我不确定这是否有帮助,但是为了获得rootViewController,我总是使用此方法:

if let window = UIApplication.shared.keyWindow?.rootViewController {

        }

没有代表