| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- //
- // MHStickerCell.m
- #import "MHStickerCell.h"
- //#import "StickerDataListModel.h"
- #import "UIImageView+WebCache.h"
- #import "MHBeautyParams.h"
- #import <MHBeautySDK/MHBeautySDK.h>
- @interface MHStickerIndicatorView ()
- {
- CALayer *_animationLayer;
- }
- @end
- @implementation MHStickerIndicatorView
- - (instancetype)initWithCoder:(NSCoder *)aDecoder {
- self = [super initWithCoder:aDecoder];
- if (self) {
- _tintColor = [UIColor whiteColor];
- //_size = 25.0f;
- [self commonInit];
- }
- return self;
- }
- - (id)initWithTintColor:(UIColor *)tintColor size:(CGFloat)size {
- self = [super init];
- if (self) {
- _size = size;
- _tintColor = tintColor;
- [self commonInit];
- }
- return self;
-
- }
- #pragma mark -
- #pragma mark Methods
- - (void)commonInit {
- self.userInteractionEnabled = NO;
- self.hidden = YES;
- _animationLayer = [[CALayer alloc] init];
- [self.layer addSublayer:_animationLayer];
-
- [self setContentHuggingPriority:UILayoutPriorityRequired forAxis:UILayoutConstraintAxisHorizontal];
- [self setContentHuggingPriority:UILayoutPriorityRequired forAxis:UILayoutConstraintAxisVertical];
- }
- - (void)setupAnimation {
- _animationLayer.sublayers = nil;
-
- [self setupAnimationInLayer:_animationLayer withSize:CGSizeMake(_size, _size) tintColor:_tintColor];
- _animationLayer.speed = 0.0f;
- }
- - (void)setupAnimationInLayer:(CALayer *)layer withSize:(CGSize)size tintColor:(UIColor *)tintColor {
- CGFloat duration = 0.6f;
-
- // Rotate animation
- CAKeyframeAnimation *rotateAnimation = [self createKeyframeAnimationWithKeyPath:@"transform.rotation.z"];
-
- rotateAnimation.values = @[@0, @M_PI, @(2 * M_PI)];
- rotateAnimation.duration = duration;
- rotateAnimation.repeatCount = HUGE_VALF;
-
-
- // Draw ball clip
- CAShapeLayer *circle = [CAShapeLayer layer];
- UIBezierPath *circlePath =
- [UIBezierPath bezierPathWithArcCenter:CGPointMake(size.width / 2, size.height / 2) radius:size.width / 2 startAngle:1.5 * M_PI endAngle:M_PI clockwise:true];
-
- circle.path = circlePath.CGPath;
- circle.lineWidth = 2;
- circle.fillColor = nil;
- circle.strokeColor = tintColor.CGColor;
-
- circle.frame =
- CGRectMake(0, 0, size.width, size.height);
- [circle addAnimation:rotateAnimation forKey:@"animation"];
- [layer addSublayer:circle];
- }
- - (CAKeyframeAnimation *)createKeyframeAnimationWithKeyPath:(NSString *)keyPath {
- CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath:keyPath];
- animation.removedOnCompletion = NO;
- return animation;
- }
- - (void)startAnimating {
- if (!_animationLayer.sublayers) {
- [self setupAnimation];
- }
- self.hidden = NO;
- _animationLayer.speed = 1.0f;
- _animating = YES;
- }
- - (void)stopAnimating {
- _animationLayer.speed = 0.0f;
- _animating = NO;
- self.hidden = YES;
- }
- #pragma mark Setters
- - (void)setSize:(CGFloat)size {
- if (_size != size) {
- _size = size;
- [self setupAnimation];
- [self invalidateIntrinsicContentSize];
- }
- }
- - (void)setTintColor:(UIColor *)tintColor {
- if (![_tintColor isEqual:tintColor]) {
- _tintColor = tintColor;
-
- CGColorRef tintColorRef = tintColor.CGColor;
- for (CALayer *sublayer in _animationLayer.sublayers) {
- sublayer.backgroundColor = tintColorRef;
-
- if ([sublayer isKindOfClass:[CAShapeLayer class]]) {
- CAShapeLayer *shapeLayer = [[CAShapeLayer alloc] init];
- shapeLayer.strokeColor = tintColorRef;
- shapeLayer.fillColor = tintColorRef;
- }
- }
- }
- }
- #pragma mark Layout
- - (void)layoutSubviews {
- [super layoutSubviews];
-
- _animationLayer.frame = self.bounds;
-
- BOOL animating = _animating;
-
- if (animating)
- [self stopAnimating];
-
- [self setupAnimation];
-
- if (animating)
- [self startAnimating];
- }
- - (CGSize)intrinsicContentSize {
- return CGSizeMake(_size, _size);
- }
- @end
- @interface MHStickerCell ()
- @property (nonatomic, strong) UIImageView *stickerView;
- @property(nonatomic, strong) MHStickerIndicatorView *indicatorView;
- @end
- @implementation MHStickerCell
- - (instancetype)initWithFrame:(CGRect)frame {
- if (self = [super initWithFrame:frame]) {
- self.backgroundColor = [UIColor clearColor];
- [self addSubview:self.selectedImgView];
- [self addSubview:self.stickerView];
- [self addSubview:self.downloadImg];
- [self addSubview:self.indicatorView];
- }
- return self;
- }
- - (void)setSticker:(StickerDataListModel *)sticker index:(NSInteger)index {
- _listModel = sticker;
- if (index == 0) {
- if (self.indicatorView.animating == YES) {
- [self.indicatorView stopAnimating];
- }
- }
- self.stickerView.image = [UIImage imageNamed:sticker.thumb];
- self.downloadImg.hidden = YES;
- }
- - (void)setListModel:(StickerDataListModel *)listModel {
- if (!listModel) {
- return;
- }
- _listModel = listModel;
- NSString * thumb = listModel.thumb;
- if (!IsString(thumb)) {
- return;
- }
- // if (listModel.isCancelImage) {
- // [self.stickerView setImage:listModel.cancelImage];
- // }else{
- [self.stickerView sd_setImageWithURL:[NSURL URLWithString:thumb]];
- // }
- if (isSaveSticker) {
- NSDictionary *info = [[NSUserDefaults standardUserDefaults] objectForKey:kMHSticker];
- if (IsDictionaryWithAnyKeyValue(info)) {
- NSString *key = [NSString stringWithFormat:@"%@:%@",listModel.name,listModel.uptime];
- NSString *savedKey = [info objectForKey:@"content"];
- if ([savedKey isEqualToString:key]) {
- listModel.isSelected = YES;
- listModel.is_downloaded = @"1";
- }else{
- listModel.isSelected = NO;
- }
- }else{
- listModel.isSelected = NO;
- // listModel.is_downloaded = @"0";
- }
- }
- self.selectedImgView.hidden = !listModel.isSelected;
- if (listModel.is_downloaded.boolValue == YES) {
- if (self.indicatorView.animating == YES) {
- [self.indicatorView stopAnimating];
- }
- self.downloadImg.hidden = YES;
- listModel.downloadState = MHStickerDownloadStateDownoadDone;
- } else {
- if (listModel.downloadState == MHStickerDownloadStateDownoading) {
- self.downloadImg.hidden = YES;
- if (self.indicatorView.animating != YES) {
- [self.indicatorView startAnimating];
- }
- } else {
- if (self.indicatorView.animating == YES) {
- [self.indicatorView stopAnimating];
- }
-
- listModel.downloadState = MHStickerDownloadStateDownoadNot;
- self.downloadImg.hidden = NO;
-
- }
-
- }
-
-
-
- }
- /**
- 动画
- */
- - (void)startDownload {
- self.listModel.downloadState = MHStickerDownloadStateDownoading;
- self.downloadImg.hidden = YES;
- [self.indicatorView startAnimating];
- }
- - (void)stopDownLoad {
- self.listModel.downloadState = MHStickerDownloadStateDownoadDone;
- self.downloadImg.hidden = YES;
- [self.indicatorView stopAnimating];
- }
- #pragma mark - lazy
- - (UIImageView *)selectedImgView {
- if (!_selectedImgView) {
- UIImage *img = BundleImg(@"ic_border_selected");
- if ([[[NSUserDefaults standardUserDefaults] valueForKey:kLanguage] isEqualToString:kLanguage_EN]) {
- img = FoxBundleImg(@"selectedBorder");
- }
- // if (!isChinese) {
- // img = FoxBundleImg(@"selectedBorder");
- // }
- _selectedImgView = [[UIImageView alloc] initWithImage:img];
- _selectedImgView.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);
- _selectedImgView.hidden = YES;
- }
- return _selectedImgView;
- }
- - (UIImageView *)stickerView {
- if (!_stickerView) {
- _stickerView = [[UIImageView alloc] initWithFrame:CGRectMake((self.frame.size.width - 45)/2, (self.frame.size.height - 45)/2, 45, 45)];
- }
- return _stickerView;
- }
- - (UIImageView *)downloadImg {
- if (!_downloadImg) {
- UIImage *img = BundleImg(@"stickerDownload");
- _downloadImg = [[UIImageView alloc] initWithImage:img];
- _downloadImg.frame = CGRectMake(_stickerView.frame.size.width - 13, _stickerView.frame.size.height - 13, 13, 13);
- }
- return _downloadImg;
- }
- - (MHStickerIndicatorView *)indicatorView {
- if (!_indicatorView) {
- _indicatorView = [[MHStickerIndicatorView alloc] initWithTintColor:[UIColor whiteColor] size:25];
- _indicatorView.frame = CGRectMake((self.frame.size.width - 25)/2, (self.frame.size.height - 25)/2, 25, 25);
- }
- return _indicatorView;
- }
- @end
|