Xcode – How to do progress reporting using Async/Await swift?
I have a function that takes 2 callbacks. I want to convert this into async/await. But how can I await while continuously returning the progress also? I am using https://github.com/yannickl/AwaitKit to get rid of callbacks. typealias GetResultCallBack = (String) ->…