Can asynchronous operations be used with `progress` on OperationQueue? – Ios swift
Starting in iOS13, one can monitor the progress of an OperationQueue using the progress property. The documentation states that only operations that do not override start() count when tracking progress. However, asynchronous operations must override start() and not call super()…