我在一个http闭包中得到了一个未捕获的豁免,这个闭包与一个声明存在未捕获豁免的字典相关。当我设置断点豁免时,它指向字典。所讨论的字典在结构中声明为静态变量,并且已经有多个值,所以这怎么可能发生?这是http请求。

 session.dataTask(with: request){ (data, response, error) in
            if let data = data,
                let tile = UIImage(data: data),
                let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first{
                let fileName = Date().timeIntervalSince1970
                let filePath = documentsURL.appendingPathComponent(String(describing: fileName))


                Maps.tileCachePath[url] = fileName  //<- this is where the exception happens


                //make sure there is no old file and if so delete it
                if FileManager.default.fileExists(atPath: filePath.path){
                    do {
                        try FileManager.default.removeItem(at: filePath)

                    } catch{
                        print("error deleting old tile")
                    }

                }

                //now write the new file
                FileManager.default.createFile(atPath: filePath.path, contents: data, attributes: nil)
                print(filePath.path)
                //return
                result(tile, error)

            } else {
                result(nil, error)
            }


            }.resume()

最佳答案

是个打字错误
替换

Maps.tileCachePath[url] = fileName

具有
Maps.tileCachePath[url] = filePath

基本上Date().timeIntervalSince1970作为文件名是一个非常糟糕的主意。该数字包含作为文件扩展名处理的小数秒。
使用更可靠的文件名,如格式化日期,或者至少删除小数秒并添加实际的文件扩展名。

07-27 19:21