Hey guys, I have a class on main thread that calls an async operation inside of it and have a callback that runs on a different thread on iOS. I tried to change the thread without success with
dispatch_async(dispatch_get_main_queue()) { /* */ }
😢
How can I handle the result operation?