Swiftgram/LegacyComponents/TGMediaAssetsPhotoCell.m
2019-03-19 20:51:32 +04:00

16 lines
337 B
Objective-C

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