mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 17:38:07 +01:00
22 lines
581 B
C
22 lines
581 B
C
|
#import "TGImageView.h"
|
||
|
#import "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
|