GCD 로 카운트다운 하기
__block int timeout = 60; //
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_source_t _timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue);
dispatch_source_set_timer(_timer, dispatch_walltime(NULL, 0), 1.0 * NSEC_PER_SEC, 0); //
dispatch_source_set_event_handler(_timer, ^{
if(timeout <= 1) { //
dispatch_source_cancel(_timer);
dispatch_async(dispatch_get_main_queue(), ^{
getCodeButton.backgroundColor = RGBACOLOR(232, 154, 37, 1);
getCodeButton.userInteractionEnabled = YES;
[getCodeButton setTitle:@" " forState:UIControlStateNormal];
[getCodeButton setTitle:@" " forState:UIControlStateHighlighted];
});
} else {
dispatch_async(dispatch_get_main_queue(), ^{
getCodeButton.backgroundColor = [UIColor lightGrayColor];
getCodeButton.userInteractionEnabled = NO;
[getCodeButton setTitle:[NSString stringWithFormat:@"%d", timeout] forState:UIControlStateNormal];
});
timeout--;
}
});
dispatch_resume(_timer);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
IOS Application core architectureA new IOS application program is mainly composed of the following files: If the app delegate class is nil, UIKit will as...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.