| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /************************************************************
- * * Hyphenate CONFIDENTIAL
- * __________________
- * Copyright (C) 2016 Hyphenate Inc. All rights reserved.
- *
- * NOTICE: All information contained herein is, and remains
- * the property of Hyphenate Inc.
- * Dissemination of this information or reproduction of this material
- * is strictly forbidden unless prior written permission is obtained
- * from Hyphenate Inc.
- */
- #import "EaseBubbleView+Video.h"
- @implementation EaseBubbleView (Video)
- #pragma mark - private
- - (void)_setupVideoBubbleMarginConstraints
- {
- NSLayoutConstraint *marginTopConstraint = [NSLayoutConstraint constraintWithItem:self.videoImageView attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:self.backgroundImageView attribute:NSLayoutAttributeTop multiplier:1.0 constant:self.margin.top];
- NSLayoutConstraint *marginBottomConstraint = [NSLayoutConstraint constraintWithItem:self.videoImageView attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:self.backgroundImageView attribute:NSLayoutAttributeBottom multiplier:1.0 constant:-self.margin.bottom];
- NSLayoutConstraint *marginLeftConstraint = [NSLayoutConstraint constraintWithItem:self.videoImageView attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:self.backgroundImageView attribute:NSLayoutAttributeRight multiplier:1.0 constant:-self.margin.right];
- NSLayoutConstraint *marginRightConstraint = [NSLayoutConstraint constraintWithItem:self.videoImageView attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:self.backgroundImageView attribute:NSLayoutAttributeLeft multiplier:1.0 constant:self.margin.left];
-
- [self.marginConstraints removeAllObjects];
- [self.marginConstraints addObject:marginTopConstraint];
- [self.marginConstraints addObject:marginBottomConstraint];
- [self.marginConstraints addObject:marginLeftConstraint];
- [self.marginConstraints addObject:marginRightConstraint];
-
- [self addConstraints:self.marginConstraints];
- }
- - (void)_setupVideoBubbleConstraints
- {
- [self _setupVideoBubbleMarginConstraints];
-
- [self addConstraint:[NSLayoutConstraint constraintWithItem:self.videoTagView attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:self.videoImageView attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0]];
-
- [self addConstraint:[NSLayoutConstraint constraintWithItem:self.videoTagView attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:self.videoImageView attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0]];
-
- [self addConstraint:[NSLayoutConstraint constraintWithItem:self.videoTagView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self.videoImageView attribute:NSLayoutAttributeWidth multiplier:0.5 constant:0]];
-
- [self addConstraint:[NSLayoutConstraint constraintWithItem:self.videoTagView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:self.videoTagView attribute:NSLayoutAttributeWidth multiplier:1.0 constant:0]];
- }
- #pragma mark - public
- - (void)setupVideoBubbleView
- {
- self.videoImageView = [[UIImageView alloc] init];
- self.videoImageView.translatesAutoresizingMaskIntoConstraints = NO;
- self.videoImageView.backgroundColor = [UIColor clearColor];
- [self.backgroundImageView addSubview:self.videoImageView];
-
- self.videoTagView = [[UIImageView alloc] init];
- self.videoTagView.translatesAutoresizingMaskIntoConstraints = NO;
- self.videoTagView.backgroundColor = [UIColor clearColor];
- [self.videoImageView addSubview:self.videoTagView];
-
- [self _setupVideoBubbleConstraints];
- }
- - (void)updateVideoMargin:(UIEdgeInsets)margin
- {
- if (_margin.top == margin.top && _margin.bottom == margin.bottom && _margin.left == margin.left && _margin.right == margin.right) {
- return;
- }
- _margin = margin;
-
- [self removeConstraints:self.marginConstraints];
- [self _setupVideoBubbleMarginConstraints];
- }
- @end
|