1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- //
- // VideoCell.m
- // WFChat UIKit
- //
- // Created by WF Chat on 2017/9/2.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import "WFCUVideoCell.h"
- #import <WFChatClient/WFCChatClient.h>
- @interface WFCUVideoCell ()
- @property(nonatomic, strong) UIImageView *shadowMaskView;
- @end
- @implementation WFCUVideoCell
- + (CGSize)sizeForClientArea:(WFCUMessageModel *)msgModel withViewWidth:(CGFloat)width {
- WFCCVideoMessageContent *imgContent = (WFCCVideoMessageContent *)msgModel.message.content;
-
- CGSize size = imgContent.thumbnail.size;
-
- if (size.height > width || size.width > width) {
- float scale = MIN(width/size.height, width/size.width);
- size = CGSizeMake(size.width * scale, size.height * scale);
- }
- return size;
- }
- - (void)setModel:(WFCUMessageModel *)model {
- [super setModel:model];
-
- WFCCVideoMessageContent *imgContent = (WFCCVideoMessageContent *)model.message.content;
- self.thumbnailView.frame = self.bubbleView.bounds;
- self.thumbnailView.image = imgContent.thumbnail;
- self.videoCoverView.frame = CGRectMake((self.bubbleView.bounds.size.width - 80)/2, (self.bubbleView.bounds.size.height - 80)/2, 80, 80);
- self.videoCoverView.image = [UIImage imageNamed:@"video_msg_cover"];
- }
- - (UIImageView *)thumbnailView {
- if (!_thumbnailView) {
- _thumbnailView = [[UIImageView alloc] init];
- [self.bubbleView addSubview:_thumbnailView];
- }
- return _thumbnailView;
- }
- - (UIImageView *)videoCoverView {
- if (!_videoCoverView) {
- _videoCoverView = [[UIImageView alloc] init];
- _videoCoverView.backgroundColor = [UIColor clearColor];
- [self.bubbleView addSubview:_videoCoverView];
- }
- return _videoCoverView;
- }
- - (void)setMaskImage:(UIImage *)maskImage{
- [super setMaskImage:maskImage];
- if (_shadowMaskView) {
- [_shadowMaskView removeFromSuperview];
- }
- _shadowMaskView = [[UIImageView alloc] initWithImage:maskImage];
-
- CGRect frame = CGRectMake(self.bubbleView.frame.origin.x - 1, self.bubbleView.frame.origin.y - 1, self.bubbleView.frame.size.width + 2, self.bubbleView.frame.size.height + 2);
- _shadowMaskView.frame = frame;
- [self.contentView addSubview:_shadowMaskView];
- [self.contentView bringSubviewToFront:self.bubbleView];
-
- }
- @end
|