1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-03 09:57:46 +01:00
Telegram/Telegraph/TGSharedMediaItemView.m
2015-10-01 19:19:52 +03:00

47 lines
724 B
Objective-C

#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