mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 10:27:46 +01:00
16 lines
349 B
C
16 lines
349 B
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;
|
||
|
|
||
|
@end
|