






#import "WrapperCanRingInvokeMeasureCell.h"
#import "LeftHosting.h"
#import "Masonry.h"

@implementation WrapperCanRingInvokeMeasureCell

-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if(self){
        
        self.backgroundColor = UIColor.whiteColor;
        self.contentView.backgroundColor = UIColor.whiteColor;
        self.selectionStyle = UITableViewCellSelectionStyleNone;
        
        
        self.napSeedSunView = [UIImageView new];
        self.napSeedSunView.tintColor = [LeftHosting rankCycleColor];
        self.napSeedSunView.layer.cornerRadius = 15;
        [self.contentView addSubview:self.napSeedSunView];
        [self.napSeedSunView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(LeftHosting.busJobRemote.momentaryDry);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(LeftHosting.busJobRemote.focalZeroFun);
        }];
        
        
        self.herSlopeName = [UILabel new];
        self.herSlopeName.font = [UIFont boldSystemFontOfSize:16];
        self.herSlopeName.textColor = UIColor.darkGrayColor;
        [self.contentView addSubview:self.herSlopeName];
        [self.herSlopeName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.napSeedSunView.mas_right).offset(LeftHosting.busJobRemote.momentaryDry);
            make.bottom.equalTo(self.contentView.mas_centerY);
        }];
        
        
        self.seeDaughterTime = [UILabel new];
        self.seeDaughterTime.font =  [UIFont systemFontOfSize:11];
        self.seeDaughterTime.textColor = UIColor.grayColor;
        [self.contentView addSubview:self.seeDaughterTime];
        [self.seeDaughterTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.contentView.mas_centerY).offset(LeftHosting.busJobRemote.runSeeBirth);
            make.left.equalTo(self.herSlopeName);
        }];
    }
    return self;
}

@end
