// // MaskTimeEndViewImgaeCell.m // GIGA // // Created by lianxiang on 2018/9/21. // Copyright © 2018年 com.giga.ios. All rights reserved. // #import "MaskTimeEndViewImgaeCell.h" @implementation MaskTimeEndViewImgaeCell - (void)awakeFromNib { [super awakeFromNib]; // Initialization code self.holdbackView.layer.masksToBounds = NO; self.holdbackView.layer.cornerRadius = 10; self.holdbackView.layer.shadowOffset = CGSizeMake(0, 0); self.holdbackView.layer.shadowColor = [UIColor blackColor].CGColor; self.holdbackView.layer.shadowOpacity = 0.6; self.whiteBackView.layer.masksToBounds= NO; self.whiteBackView.layer.cornerRadius = 8; self.whiteBackView.layer.shadowOffset = CGSizeMake(0, 0); self.whiteBackView.layer.shadowColor = [UIColor blackColor].CGColor; self.whiteBackView.layer.shadowOpacity = 0.6; self.barholdView.layer.masksToBounds= NO; self.barholdView.layer.cornerRadius =4; self.barholdView.layer.shadowOffset = CGSizeMake(0, 0); self.barholdView.layer.shadowColor = [UIColor blackColor].CGColor; self.barholdView.layer.shadowOpacity = 0.6; [self bringSubviewToFront:self.barholdView]; } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } @end