mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
396 B
Objective-C
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
|