123456789101112131415161718192021222324252627 |
- //
- // WSS.m
- // SuperShow
- //
- // Created by luxiaoming on 2019/3/9.
- // Copyright © 2019 duowan. All rights reserved.
- //
- #import "WSS.h"
- #import <OJAKit/OJAKit.h>
- @implementation WSS
- - (void)testQueue {
-
- NSTimeInterval one = [[NSDate date] timeIntervalSince1970];
- NSTimeInterval two = [[NSDate date] timeIntervalSince1970];
- NSLog(@"time consume : %@", @(two - one));
-
-
-
- dispatch_sync(dispatch_get_main_queue(), ^{
-
- });
- }
- @end
|