mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-11 15:10:37 +00:00
38 lines
530 B
Objective-C
38 lines
530 B
Objective-C
//
|
|
// ASImageContainerProtocolCategories.m
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Garrett Moon on 3/18/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import "ASImageContainerProtocolCategories.h"
|
|
|
|
@implementation UIImage (ASImageContainerProtocol)
|
|
|
|
- (UIImage *)asdk_image
|
|
{
|
|
return self;
|
|
}
|
|
|
|
- (NSData *)asdk_animatedImageData
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation NSData (ASImageContainerProtocol)
|
|
|
|
- (UIImage *)asdk_image
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
- (NSData *)asdk_animatedImageData
|
|
{
|
|
return self;
|
|
}
|
|
|
|
@end
|