Swiftgram/LegacyComponents/TGMediaPickerCell.h
Ilya Laktyushin b22579ab57 no message
2017-11-08 16:23:50 +04:00

20 lines
638 B
Objective-C

#import <LegacyComponents/TGImageView.h>
#import <LegacyComponents/TGCheckButtonView.h>
@class TGMediaSelectionContext;
@class TGMediaEditingContext;
@interface TGMediaPickerCell : UICollectionViewCell
@property (nonatomic, readonly) TGImageView *imageView;
@property (nonatomic, readonly) TGCheckButtonView *checkButton;
- (void)setHidden:(bool)hidden animated:(bool)animated;
@property (nonatomic, strong) TGMediaSelectionContext *selectionContext;
@property (nonatomic, strong) TGMediaEditingContext *editingContext;
@property (nonatomic, readonly) NSObject *item;
- (void)setItem:(NSObject *)item signal:(SSignal *)signal;
@end