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

19 lines
493 B
Objective-C

#import "TGAttachmentCameraCell.h"
NSString *const TGAttachmentCameraCellIdentifier = @"AttachmentCameraCell";
@implementation TGAttachmentCameraCell
- (void)attachCameraViewIfNeeded:(TGAttachmentCameraView *)cameraView
{
if (_cameraView == cameraView)
return;
_cameraView = cameraView;
_cameraView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
_cameraView.frame = self.bounds;
[self addSubview:cameraView];
}
@end