Completion handlers to async
You have an old networking layer built on completion handlers, called from hundreds of places across the app. How would you move it to async/await without breaking all the call sites at once?
Completion handlers to async
You have an old networking layer built on completion handlers, called from hundreds of places across the app. How would you move it to async/await without breaking all the call sites at once?
ConcurrencyShort answerBasics
In Swift Concurrency, what actually happens when execution hits an await, and how is that…
#async-await #continuation
ArchitectureShort answerAdvanced
You've been asked to move a 5-year-old MVC app (150 view controllers, almost no tests) to…
#migration #legacy
ArchitectureShort answerAdvanced
You need to improve the structure of a massive ViewController in a live UIKit order featu…
#migration #legacy
NetworkingMultiple choiceAdvanced
In this Swift Concurrency code that sends a URLSession request, task.cancel() runs before…
#async-await #cancellation