1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 02:17:51 +01:00
Telegram/Telegraph/TGSharedMediaItemView.m

47 lines
724 B
Mathematica
Raw Normal View History

2015-10-01 18:19:52 +02:00
#import "TGSharedMediaItemView.h"
@implementation TGSharedMediaItemView
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self != nil)
{
self.layer.zPosition = -1.0f;
}
return self;
}
- (void)enqueueImageViewWithUri
{
}
- (UIView *)transitionView
{
return nil;
}
- (void)updateItemHidden
{
}
- (void)updateItemSelected
{
}
- (void)imageThumbnailUpdated:(NSString *)__unused thumbnaiUri
{
}
- (void)setEditing:(bool)editing animated:(bool)animated
{
[self setEditing:editing animated:animated delay:0.0];
}
- (void)setEditing:(bool)editing animated:(bool)__unused animated delay:(NSTimeInterval)__unused delay
{
_editing = editing;
}
@end