






#import "TwoImperialEastBleedSimulatesCell.h"
#import "BurstUpload.h"
#import "Masonry.h"

@implementation TwoImperialEastBleedSimulatesCell

-(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.celsiusCarView = [UIImageView new];
        self.celsiusCarView.tintColor = [BurstUpload manGlobalColor];
        self.celsiusCarView.layer.cornerRadius = 15;
        [self.contentView addSubview:self.celsiusCarView];
        [self.celsiusCarView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(BurstUpload.styleOrigins.areTeluguCap);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(BurstUpload.styleOrigins.finderDryMan);
        }];
        
        
        self.unlockedName = [UILabel new];
        self.unlockedName.font = [UIFont boldSystemFontOfSize:16];
        self.unlockedName.textColor = UIColor.darkGrayColor;
        [self.contentView addSubview:self.unlockedName];
        [self.unlockedName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.celsiusCarView.mas_right).offset(BurstUpload.styleOrigins.areTeluguCap);
            make.bottom.equalTo(self.contentView.mas_centerY);
        }];
        
        
        self.adaptiveRetTime = [UILabel new];
        self.adaptiveRetTime.font =  [UIFont systemFontOfSize:11];
        self.adaptiveRetTime.textColor = UIColor.grayColor;
        [self.contentView addSubview:self.adaptiveRetTime];
        [self.adaptiveRetTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.contentView.mas_centerY).offset(BurstUpload.styleOrigins.smoothEight);
            make.left.equalTo(self.unlockedName);
        }];
    }
    return self;
}

@end
