mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
17 lines
399 B
Objective-C
17 lines
399 B
Objective-C
//
|
|
// Created by Oleksii Pavlovskyi on 2/2/17.
|
|
// Copyright (c) 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#if !TARGET_OS_IPHONE && !TARGET_IPHONE_SIMULATOR
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface CADisplayLink : NSObject
|
|
|
|
+ (CADisplayLink *)displayLinkWithTarget:(id)target selector:(SEL)sel;
|
|
- (void)addToRunLoop:(NSRunLoop *)runloop forMode:(NSRunLoopMode)mode;
|
|
- (void)invalidate;
|
|
|
|
@end
|
|
#endif
|