mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
28 lines
445 B
Objective-C
28 lines
445 B
Objective-C
|
|
#import "TGModernMediaListItemContentView.h"
|
|
|
|
@implementation TGModernMediaListItemContentView
|
|
|
|
- (void)prepareForReuse
|
|
{
|
|
}
|
|
|
|
- (void)updateItem
|
|
{
|
|
}
|
|
|
|
- (void)setItem:(id<TGModernMediaListItem>)item
|
|
{
|
|
[self setItem:item synchronously:false];
|
|
}
|
|
|
|
- (void)setItem:(id<TGModernMediaListItem>)item synchronously:(bool)__unused synchronously
|
|
{
|
|
_item = item;
|
|
}
|
|
|
|
- (void)setHidden:(bool)__unused hidden animated:(bool)__unused animated {
|
|
}
|
|
|
|
@end
|