59 lines
1.6 KiB
Objective-C
59 lines
1.6 KiB
Objective-C
//
|
|
// QXTimer.m
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/4/28.
|
|
//
|
|
|
|
#import "QXTimer.h"
|
|
@interface QXTimer ()
|
|
|
|
@property (strong, nonatomic) dispatch_source_t timer;
|
|
|
|
@end
|
|
|
|
@implementation QXTimer
|
|
|
|
+ (QXTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)interval
|
|
repeats:(BOOL)repeats
|
|
queue:(dispatch_queue_t)queue
|
|
block:(void (^)(void))block {
|
|
QXTimer *timer = [[QXTimer alloc] initWithInterval:interval
|
|
repeats:repeats
|
|
queue:queue
|
|
block:block];
|
|
return timer;
|
|
}
|
|
|
|
- (instancetype)initWithInterval:(NSTimeInterval)interval
|
|
repeats:(BOOL)repeats
|
|
queue:(dispatch_queue_t)queue
|
|
block:(void (^)(void))block {
|
|
self = [super init];
|
|
if (self) {
|
|
self.timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue);
|
|
dispatch_source_set_timer(self.timer, dispatch_time(DISPATCH_TIME_NOW, interval * NSEC_PER_SEC), interval * NSEC_PER_SEC, 0);
|
|
dispatch_source_set_event_handler(self.timer, ^{
|
|
if (!repeats) {
|
|
dispatch_source_cancel(self.timer);
|
|
}
|
|
block();
|
|
});
|
|
dispatch_resume(self.timer);
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)dealloc {
|
|
[self invalidate];
|
|
}
|
|
|
|
- (void)invalidate {
|
|
if (self.timer) {
|
|
dispatch_source_cancel(self.timer);
|
|
}
|
|
}
|
|
|
|
|
|
@end
|