mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-07 13:35:09 +00:00
git-subtree-dir: submodules/LegacyComponents git-subtree-mainline:6086305304git-subtree-split:d559434616
16 lines
378 B
Objective-C
16 lines
378 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface TGModernAnimatedImagePlayer : NSObject
|
|
|
|
@property (nonatomic, copy) void (^frameReady)(UIImage *);
|
|
|
|
- (instancetype)initWithSize:(CGSize)size renderSize:(CGSize)renderSize path:(NSString *)path;
|
|
- (instancetype)initWithSize:(CGSize)size data:(NSData *)data;
|
|
|
|
- (void)play;
|
|
- (void)stop;
|
|
- (void)pause;
|
|
|
|
@end
|