How can I determine if Apple methods are asynchronous?
Solution 1:
I was able to catch rearrangeObjects
invoking dispatch_async_f
(through bindings) by breaking just before the suspect line of code and enabling symbolic breakpoints on the GCD dispatch_async functions:
And, sure enough, the dispatch_async_f
symbolic breakpoint stopped on the rearrangeObjects
line: