12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // RQTimeModule.m
- // jiaPei
- //
- // Created by 张嵘 on 2021/11/19.
- // Copyright © 2021 JCZ. All rights reserved.
- //
- #import "RQTimeModule.h"
- static RQTimeModule *manger = nil;
- static dispatch_once_t onceToken;
- @interface RQTimeModule ()
- @end
- @implementation RQTimeModule
- #pragma mark - SystemMethod
- + (RQTimeModule *)sharedManager {
- dispatch_once(&onceToken, ^{
- manger = [[self alloc] init];
- });
- return manger;
- }
- - (instancetype)init {
- self = [super init];
- if (self) {
-
- }
- return self;
- }
- - (void)dealloc {
-
- }
- #pragma mark - PublicMethod
- @end
|