spiegel-keyman/mac/KeymanEngine4Mac/KeymanEngine4Mac/KME/Supporting Files/TimerTarget.h
2017-08-10 13:11:52 +07:00

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