






#import "IndexingMiterFriendMouthVirtualCell.h"
#import "CutEightLow.h"
#import "Masonry.h"

@implementation IndexingMiterFriendMouthVirtualCell

-(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.blobMixOldView = [UIImageView new];
        self.blobMixOldView.tintColor = [CutEightLow megabytesColor];
        self.blobMixOldView.layer.cornerRadius = 15;
        [self.contentView addSubview:self.blobMixOldView];
        [self.blobMixOldView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(CutEightLow.licenseSmart.trackPermute);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(CutEightLow.licenseSmart.hexWristPath);
        }];
        
        
        self.incomingName = [UILabel new];
        self.incomingName.font = [UIFont boldSystemFontOfSize:16];
        self.incomingName.textColor = UIColor.darkGrayColor;
        [self.contentView addSubview:self.incomingName];
        [self.incomingName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.blobMixOldView.mas_right).offset(CutEightLow.licenseSmart.trackPermute);
            make.bottom.equalTo(self.contentView.mas_centerY);
        }];
        
        
        self.trustAttachTime = [UILabel new];
        self.trustAttachTime.font =  [UIFont systemFontOfSize:11];
        self.trustAttachTime.textColor = UIColor.grayColor;
        [self.contentView addSubview:self.trustAttachTime];
        [self.trustAttachTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.contentView.mas_centerY).offset(CutEightLow.licenseSmart.sigmaBinMap);
            make.left.equalTo(self.incomingName);
        }];
    }
    return self;
}

@end
