我遇到了 dispatch_async 挂起的问题。当我向队列中添加另一个操作时,我想找出队列中有哪些操作/方法,以便我可以追踪我的队列挂起的位置。
dispatch_async(dispatch_get_main_queue(), ^{
// NSLog the items in the queue at this moment
[_delegate searchOperationFinished:self];
});
我验证了队列正在运行它运行其他操作,但它永远不会运行到最后运行此方法。