mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
19 lines
573 B
C
19 lines
573 B
C
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class SSignal;
|
||
|
@class TGMediaSelectionContext;
|
||
|
@class TGMediaEditingContext;
|
||
|
@protocol TGMediaSelectableItem;
|
||
|
|
||
|
@interface TGMediaPickerPhotoStripCell : UICollectionViewCell
|
||
|
|
||
|
@property (nonatomic, strong) TGMediaSelectionContext *selectionContext;
|
||
|
@property (nonatomic, strong) TGMediaEditingContext *editingContext;
|
||
|
@property (nonatomic, copy) void (^itemSelected)(id<TGMediaSelectableItem> item, bool selected, id sender);
|
||
|
|
||
|
- (void)setItem:(NSObject *)item signal:(SSignal *)signal;
|
||
|
|
||
|
@end
|
||
|
|
||
|
extern NSString *const TGMediaPickerPhotoStripCellKind;
|