mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
423 B
Objective-C
18 lines
423 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import <LegacyComponents/TGModernMediaListItem.h>
|
|
|
|
@interface TGModernMediaListItemContentView : UIView
|
|
|
|
@property (nonatomic, strong) id<TGModernMediaListItem> item;
|
|
@property (nonatomic) bool isHidden;
|
|
|
|
- (void)prepareForReuse;
|
|
- (void)updateItem;
|
|
|
|
- (void)setItem:(id<TGModernMediaListItem>)item synchronously:(bool)synchronously;
|
|
|
|
- (void)setHidden:(bool)hidden animated:(bool)animated;
|
|
|
|
@end
|