






#import "SuccessPointFootnoteCoalescedTightCell.h"
#import "AffectedBus.h"
#import "Masonry.h"

@implementation SuccessPointFootnoteCoalescedTightCell

-(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.twoSharpenView = [UIImageView new];
        self.twoSharpenView.tintColor = [AffectedBus betterWhoColor];
        self.twoSharpenView.layer.cornerRadius = 15;
        [self.contentView addSubview:self.twoSharpenView];
        [self.twoSharpenView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(AffectedBus.mixProviders.tapsLowCanon);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(AffectedBus.mixProviders.cropInuitEye);
        }];
        
        
        self.twistPutName = [UILabel new];
        self.twistPutName.font = [UIFont boldSystemFontOfSize:16];
        self.twistPutName.textColor = UIColor.darkGrayColor;
        [self.contentView addSubview:self.twistPutName];
        [self.twistPutName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.twoSharpenView.mas_right).offset(AffectedBus.mixProviders.tapsLowCanon);
            make.bottom.equalTo(self.contentView.mas_centerY);
        }];
        
        
        self.refinedFullTime = [UILabel new];
        self.refinedFullTime.font =  [UIFont systemFontOfSize:11];
        self.refinedFullTime.textColor = UIColor.grayColor;
        [self.contentView addSubview:self.refinedFullTime];
        [self.refinedFullTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.contentView.mas_centerY).offset(AffectedBus.mixProviders.didSlopeKin);
            make.left.equalTo(self.twistPutName);
        }];
    }
    return self;
}

@end
