Swiftgram/LegacyComponents/TGAttachmentCameraCell.m
2017-07-28 16:50:06 +03: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