Swiftgram/LegacyComponents/TGMediaPickerCell.h
Ilya Laktyushin 53480a35a2 no message
2017-12-23 03:21:01 +04:00

23 lines
729 B
Objective-C

#import <LegacyComponents/TGImageView.h>
#import <LegacyComponents/TGCheckButtonView.h>
@class TGMediaSelectionContext;
@class TGMediaEditingContext;
@class TGMediaAssetsPallete;
@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, strong) TGMediaAssetsPallete *pallete;
@property (nonatomic, readonly) NSObject *item;
- (void)setItem:(NSObject *)item signal:(SSignal *)signal;
@end