ActionStage icon indicating copy to clipboard operation
ActionStage copied to clipboard

有.不是很明白

Open shywoody opened this issue 5 years ago • 0 comments

__strong id<ASWatcher> delegate = self.delegate; if (delegate != nil && [delegate respondsToSelector:@selector(actionStageActionRequested:options:)]) [delegate actionStageActionRequested:action options:options];

if (_releaseOnMainThread && ![NSThread isMainThread])
{
    dispatch_async(dispatch_get_main_queue(), ^
    {
        [delegate class];
    });
}

不是很明白在主线程调用class方法的用意

shywoody avatar Jun 10 '20 14:06 shywoody