8

感谢 Apple,我的 iOS 9 项目“Swift 2.3”完全无法与 iOS 10 的“Swift 3”一起使用……

我修复了几乎所有东西,除了我在使用时遇到问题NSURLSession,Xcode 告诉我它已被重命名为URLSession,如果我重命名它,Xcode 会告诉我:

使用未声明的类型URLSession

基础是进口的。

什么问题?!

例如我以这种方式使用它......

lazy var defaultSession: URLSession = {
    let configuration = URLSessionConfiguration.background(withIdentifier: "reCoded.BGDownload")
    configuration.sessionSendsLaunchEvents = true
    configuration.isDiscretionary = true
    let session = URLSession(configuration: configuration, delegate: self, delegateQueue, queue: nil)
    return session
}()

甚至使用委托方法也有同样的问题。

4

5 回答 5

7

尝试Foundation.URLSession在您使用过的任何地方使用URLSession.

于 2016-06-20T19:24:26.220 回答
2

/让它工作/在某些情况下,尝试将您的代码复制到其他地方,然后删除您的类中使用URLSession的所有内容,然后再次键入会话方法并放回您复制的代码,您应该没问题。

于 2016-06-21T09:36:35.317 回答
1

更新您的 URLSessin 函数;

func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    self.data.append(data as Data)  
}

func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
    if error != nil {
        print("Failed to download data")
    }else {
        print("Data downloaded")
        self.parseJSON()
    }
}
于 2016-12-02T22:24:54.070 回答
0

我可以解释如何,但通过玩弄代码,经过两天的挫折后,我让它在 SWIFT 3 中工作。我猜 SWIFT 3 删除了很多不必要的词。

let task = Foundation.URLSession.shared.dataTask(with: <#T##URL#>, completionHandler: <#T##(Data?, URLResponse?, Error?) -> Void#>)
于 2016-10-31T14:15:38.053 回答
0

这就是我现在的位置。它并不完美,但可能有一半的时间有效。

首先,在定义我的 URLsession 的类中:

import Foundation
class Central: NSObject, URLSessionDataDelegate, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDownloadDelegate {

我不认为所有这些都是必要的,但确实如此。然后这是我的后台提取调用的函数:

func getWebData() {
    var defaults: UserDefaults = UserDefaults.standard
    let backgroundConfigObject = URLSessionConfiguration.background(withIdentifier: "myBGconfig")
    let backgroundSession = URLSession(configuration: backgroundConfigObject, delegate: self, delegateQueue: nil)
    urlString = "https://www.powersmartpricing.org/psp/servlet?type=dayslider"
    if let url = URL(string: urlString) {
    let rateTask = backgroundSession.downloadTask(with: URL(string: urlString)!)
    rateTask.taskDescription = "rate"
    rateTask.resume()
}

当任务回来时:

func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL ) {
    if downloadTask.taskDescription == "rate" {  // I run 2 web tasks during the session
        if let data = NSData(contentsOf: location) {
           var return1 = String(data: data as! Data, encoding: String.Encoding.utf8)!
             DispatchQueue.global(qos: .userInteractive).asyncAfter(deadline: .now() + 0.2){
                var defaults: UserDefaults = UserDefaults.standard
                defaults.set(myNumber, forKey: "electricRate") // myNumber is an extract of the text in returned web data
                defaults.set(Date(), forKey: "rateUpdate")
                defaults.synchronize()
                self.calcSetting()  //Calls another function defined in the same class.  That function sends the user a notification.
                let notificationName = Notification.Name("GotWebData")
                NotificationCenter.default.post(name: notificationName, object: nil)
            }   //  Closes the Dispatch
        }
      if session.configuration.identifier == "myBGconfig" {
          print("about to invalidate the session")
          session.invalidateAndCancel()
       }
}

我还没有弄清楚如何在两个任务都完成时终止会话,所以现在我在任何一个任务完成时终止它,如上所述 invalidateAndCancel 。

最后,捕捉错误:

func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didCompleteWithError: Error?) {
      if downloadTask.taskDescription == "rate" {
        print("rate download failed with error \(didCompleteWithError)")
    }
    if downloadTask.taskDescription == "other" {
        print("other download failed with error \(didCompleteWithError)")
    }
 downloadTask.resume()  //  I'm hoping this retries if a task fails?
}

func urlSession(_ session: URLSession, didBecomeInvalidWithError error: Error?) {
    if let error = error as? NSError {
        print("invalidate, error %@ / %d", error.domain, error.code)
    } else {
        print("invalidate, no error")
    }
}
于 2016-11-11T02:56:53.733 回答