






#import "ElevenMailCurveCalendarSignatureCell.h"
#import "MusicLowPen.h"
#import "Masonry.h"

@implementation ElevenMailCurveCalendarSignatureCell

-(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.featEyeOffView = [UIImageView new];
        self.featEyeOffView.tintColor = [MusicLowPen markupOddColor];
        self.featEyeOffView.layer.cornerRadius = 15;
        [self.contentView addSubview:self.featEyeOffView];
        [self.featEyeOffView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(MusicLowPen.artBehaveMay.angularPitch);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(MusicLowPen.artBehaveMay.pinkHeadline);
        }];
        
        
        self.taskHintName = [UILabel new];
        self.taskHintName.font = [UIFont boldSystemFontOfSize:16];
        self.taskHintName.textColor = UIColor.darkGrayColor;
        [self.contentView addSubview:self.taskHintName];
        [self.taskHintName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.featEyeOffView.mas_right).offset(MusicLowPen.artBehaveMay.angularPitch);
            make.bottom.equalTo(self.contentView.mas_centerY);
        }];
        
        
        self.idleLongKeyTime = [UILabel new];
        self.idleLongKeyTime.font =  [UIFont systemFontOfSize:11];
        self.idleLongKeyTime.textColor = UIColor.grayColor;
        [self.contentView addSubview:self.idleLongKeyTime];
        [self.idleLongKeyTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.contentView.mas_centerY).offset(MusicLowPen.artBehaveMay.leadIslamic);
            make.left.equalTo(self.taskHintName);
        }];
    }
    return self;
}

@end
