[Solved] what is the delegate of these NSURLSession methods in Swift?


If you type this into Playground:

class Downloader : NSObject, NSURLSessionTaskDelegate, NSURLSessionDownloadDelegate {

}

and then start typing inside the class URLS you get all the autocompletion stuff. Try that and if this does not work restart Xcode. Maybe “cleaning” the project will also help.

Please also note that the methods you reference in your question are defined by the NSURLSessionDownloadDelegate, which you did not include.

Sometimes you have to use the up or down arrow key to scroll to the right autocompletion entry.

0

solved what is the delegate of these NSURLSession methods in Swift?