Swiftgram/submodules/LegacyComponents/Sources/TGMediaAssetsPhotoCell.m
2020-02-22 15:38:54 +04:00

18 lines
396 B
Objective-C

#import "TGMediaAssetsPhotoCell.h"
#import "LegacyComponentsInternal.h"
NSString *const TGMediaAssetsPhotoCellKind = @"TGMediaAssetsPhotoCellKind";
@implementation TGMediaAssetsPhotoCell
- (instancetype)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self != nil) {
self.accessibilityLabel = TGLocalized(@"Message.Photo");
}
return self;
}
@end