mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 19:40:19 +00:00
22 lines
615 B
Objective-C
22 lines
615 B
Objective-C
#import <LegacyComponents/TGImageView.h>
|
|
#import <LegacyComponents/TGCheckButtonView.h>
|
|
|
|
@class TGMediaSelectionContext;
|
|
@class TGMediaEditingContext;
|
|
|
|
@interface TGMediaPickerCell : UICollectionViewCell
|
|
{
|
|
TGCheckButtonView *_checkButton;
|
|
}
|
|
|
|
@property (nonatomic, readonly) TGImageView *imageView;
|
|
- (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
|