December 2019
Beginner
1201 pages
33h 24m
English
Beginners sometimes don’t quite understand what it means for their code to run asynchronously. Asynchronous code runs at an indefinite time. More important, it runs after the surrounding code. This means that the order in which the code appears is not the order in which it will run.
Consider the following (and see Chapter 23):
func doSomeNetworking() {
// ... prepare url ...
let session = URLSession.shared
let task = session.downloadTask(with:url) { loc, resp, err in
// ... completion function body goes here ...
}
task.resume()
}
The method downloadTask(with:completionHandler:) calls its completion function asynchronously. It calls it when the networking finishes — and networking takes time. The order in which the chunks of code run is the numerical order of the numbered lines:
Read now
Unlock full access