mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
19 lines
573 B
Objective-C
19 lines
573 B
Objective-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;
|