mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
25 lines
432 B
Objective-C
25 lines
432 B
Objective-C
#import "TGStickerMesageImageView.h"
|
|
|
|
@interface TGStickerMesageImageView ()
|
|
|
|
@property (nonatomic, strong) NSString *viewIdentifier;
|
|
|
|
@end
|
|
|
|
@implementation TGStickerMesageImageView
|
|
|
|
- (void)willBecomeRecycled
|
|
{
|
|
}
|
|
|
|
- (NSString *)viewStateIdentifier
|
|
{
|
|
return [[NSString alloc] initWithFormat:@"TGStickerMesageImageView/%lx", (long)self.image];
|
|
}
|
|
|
|
- (void)setViewStateIdentifier:(NSString *)__unused viewStateIdentifier
|
|
{
|
|
}
|
|
|
|
@end
|