func fetchImageForEmployee(employee: PFEmployee,completion: (error: String?,image: UIImage?) -> VoID) { if (employee.profilePicture == nil) { completion(error: "No image file",image: nil) } else { employee.profilePicture!.getDataInBackgrounDWithBlock({ (data,error) -> VoID in if let error = error { let errorString = error.userInfo["error"] as? String completion(error: errorString,image: nil) } else if (data != nil) { let image = UIImage(data: data!) completion(error: nil,image: image) } else { completion(error: nil,image: nil) } }) }}
我还打印了错误,这是调试器中出现的内容:不允许在取消分配时尝试加载视图控制器的视图,并且可能导致未定义的行为(UISearchController:0x13ee44dc0)
我不知道出了什么问题,所以所有答案都值得赞赏.
右键单击Info.pList文件>打开作为>源代码,并在最新的< / dict>之前添加以下内容:<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>
在iOS9中,ATS在网络呼叫期间实施最佳实践,包括使用httpS.在Apple Documentation中了解更多相关信息.
总结以上是内存溢出为你收集整理的swift – NSURLSession / NSURLConnection HTTP加载失败(kCFStreamErrorDomainSSL,-9802)全部内容,希望文章能够帮你解决swift – NSURLSession / NSURLConnection HTTP加载失败(kCFStreamErrorDomainSSL,-9802)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)