File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ NS_ASSUME_NONNULL_BEGIN
21
21
@property (nonatomic , assign ) BOOL repeats;
22
22
23
23
// NSTimer
24
- @property (nonatomic , weak ) NSTimer * timer;
24
+ @property (nonatomic ) NSTimer * timer;
25
25
- (void )fire ;
26
26
@property (nonatomic ) CFRunLoopRef runLoop;
27
27
28
28
// CADisplayLink
29
- @property (nonatomic , weak ) CADisplayLink * displayLink;
29
+ @property (nonatomic ) CADisplayLink * displayLink;
30
30
31
31
- (void )track ;
32
32
- (void )untrack ;
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ @implementation _DTXTimerTrampoline
18
18
SEL _sel;
19
19
20
20
// NSTimer
21
- __weak NSTimer * _timer;
21
+ NSTimer * _timer;
22
22
CFRunLoopTimerCallBack _callback;
23
23
CFRunLoopRef _runLoop;
24
24
NSString * _timerDescription;
25
25
NSTimeInterval _timeUntilFire;
26
26
27
27
// CADisplayLink
28
- __weak CADisplayLink * _displayLink;
28
+ CADisplayLink * _displayLink;
29
29
30
30
BOOL _tracking;
31
31
You can’t perform that action at this time.
0 commit comments