Swiftgram/LegacyComponents/TGModernGalleryDefaultFooterView.h
2017-07-22 01:05:13 +03:00

16 lines
316 B
Objective-C

#import <UIKit/UIKit.h>
#import <LegacyComponents/TGModernGalleryItem.h>
@protocol TGModernGalleryDefaultFooterView <NSObject>
@optional
- (void)setTransitionOutProgress:(CGFloat)transitionOutProgress;
- (void)setContentHidden:(bool)contentHidden;
@required
- (void)setItem:(id<TGModernGalleryItem>)item;
@end