mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
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
|