mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
13 lines
377 B
Objective-C
13 lines
377 B
Objective-C
#import <LegacyComponents/TGMediaSelectionContext.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface TGMediaPickerSelectionGestureRecognizer : NSObject
|
|
|
|
@property (nonatomic, copy) bool (^isItemSelected)(NSIndexPath *);
|
|
@property (nonatomic, copy) void (^toggleItemSelection)(NSIndexPath *);
|
|
|
|
- (instancetype)initForCollectionView:(UICollectionView *)collectionView;
|
|
- (void)cancel;
|
|
|
|
@end
|