HWCountdownDemo icon indicating copy to clipboard operation
HWCountdownDemo copied to clipboard

到最后1秒,还是要到主线程中更新UI

Open appke opened this issue 8 years ago • 0 comments

不在主线程中更新界面,会有一点延迟

if (timeOut <= 0) {
    dispatch_source_cancel(timer);

    dispatch_async(dispatch_get_main_queue(), ^{
        weakSelf.backgroundColor = mColor;
        [weakSelf setTitle:title forState:UIControlStateNormal];
        weakSelf.userInteractionEnabled = YES;
    });
}

appke avatar Mar 30 '16 06:03 appke