mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
18 lines
406 B
Objective-C
18 lines
406 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import "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
|