mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-22 08:17:40 +00:00
14 lines
431 B
Objective-C
14 lines
431 B
Objective-C
//
|
|
// TimerTarget.h
|
|
// KeymanEngine4MacIM
|
|
//
|
|
// Created by Serkan Kurt on 27/02/2015.
|
|
// Copyright (c) 2017 SIL International. All rights reserved.
|
|
//
|
|
// NSTimer retains the target which creates a retain cycle, use this class as NSTimer target and set its target property to the real target to avoid this issue.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface TimerTarget : NSObject
|
|
@property (weak, nonatomic) id target;
|
|
@end
|