






#import "MagentaPresentedRemoteHellmanAdaptorCell.h"
#import "HerLaunched.h"
#import "Masonry.h"

@implementation MagentaPresentedRemoteHellmanAdaptorCell

-(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.artsBeforeView = [UIImageView new];
        self.artsBeforeView.tintColor = [HerLaunched ironGuideColor];
        self.artsBeforeView.layer.cornerRadius = 15;
        [self.contentView addSubview:self.artsBeforeView];
        [self.artsBeforeView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(HerLaunched.brownFairKin.illStringAny);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(HerLaunched.brownFairKin.pathPopHuman);
        }];
        
        
        self.existingName = [UILabel new];
        self.existingName.font = [UIFont boldSystemFontOfSize:16];
        self.existingName.textColor = UIColor.darkGrayColor;
        [self.contentView addSubview:self.existingName];
        [self.existingName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.artsBeforeView.mas_right).offset(HerLaunched.brownFairKin.illStringAny);
            make.bottom.equalTo(self.contentView.mas_centerY);
        }];
        
        
        self.faxHashBaseTime = [UILabel new];
        self.faxHashBaseTime.font =  [UIFont systemFontOfSize:11];
        self.faxHashBaseTime.textColor = UIColor.grayColor;
        [self.contentView addSubview:self.faxHashBaseTime];
        [self.faxHashBaseTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.contentView.mas_centerY).offset(HerLaunched.brownFairKin.publicSetup);
            make.left.equalTo(self.existingName);
        }];
    }
    return self;
}

@end
