mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
16 lines
337 B
Objective-C
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
|