






#import "StiffnessAxesAlongsideLateRectumCell.h"
#import "BadMeanSame.h"
#import "Masonry.h"

@implementation StiffnessAxesAlongsideLateRectumCell

-(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.sawWetTintView = [UIImageView new];
        self.sawWetTintView.tintColor = [BadMeanSame currentlyColor];
        self.sawWetTintView.layer.cornerRadius = 15;
        [self.contentView addSubview:self.sawWetTintView];
        [self.sawWetTintView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(BadMeanSame.clockwiseSun.queueSunBars);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(BadMeanSame.clockwiseSun.paceBouncing);
        }];
        
        
        self.scanWireName = [UILabel new];
        self.scanWireName.font = [UIFont boldSystemFontOfSize:16];
        self.scanWireName.textColor = UIColor.darkGrayColor;
        [self.contentView addSubview:self.scanWireName];
        [self.scanWireName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.sawWetTintView.mas_right).offset(BadMeanSame.clockwiseSun.queueSunBars);
            make.bottom.equalTo(self.contentView.mas_centerY);
        }];
        
        
        self.storeMinPopTime = [UILabel new];
        self.storeMinPopTime.font =  [UIFont systemFontOfSize:11];
        self.storeMinPopTime.textColor = UIColor.grayColor;
        [self.contentView addSubview:self.storeMinPopTime];
        [self.storeMinPopTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.contentView.mas_centerY).offset(BadMeanSame.clockwiseSun.hueAreLoose);
            make.left.equalTo(self.scanWireName);
        }];
    }
    return self;
}

@end
