mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-27 10:07:40 +00:00
17 lines
333 B
Objective-C
17 lines
333 B
Objective-C
//
|
|
// TimerTarget.m
|
|
// KeymanEngine4MacIM
|
|
//
|
|
// Created by Serkan Kurt on 27/02/2015.
|
|
// Copyright (c) 2017 SIL International. All rights reserved.
|
|
//
|
|
|
|
#import "TimerTarget.h"
|
|
|
|
@implementation TimerTarget
|
|
|
|
- (void)timerAction:(NSTimer *)timer {
|
|
[self.target performSelector:@selector(timerAction:) withObject:timer];
|
|
}
|
|
|
|
@end
|