1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 02:17:51 +01:00
Telegram/Telegraph/TGStickerPreviewPage.h

15 lines
336 B
C
Raw Normal View History

2015-10-01 18:19:52 +02:00
#import <UIKit/UIKit.h>
2016-02-25 01:03:51 +01:00
@class TGDocumentMediaAttachment;
2015-10-01 18:19:52 +02:00
@interface TGStickerPreviewPage : UIView
@property (nonatomic) NSUInteger pageIndex;
- (void)setDocuments:(NSArray *)documents stickerAssociations:(NSArray *)stickerAssociations;
2016-02-25 01:03:51 +01:00
- (TGDocumentMediaAttachment *)documentAtPoint:(CGPoint)point;
2015-10-01 18:19:52 +02:00
- (void)prepareForReuse;
@end