使用
时遇到问题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")
}
谢谢。
答案 0 :(得分:0)
我不确定这是否有帮助,但是为了获得rootViewController
,我总是使用此方法:
if let window = UIApplication.shared.keyWindow?.rootViewController {
}
没有代表