






#import "AskYouLuminanceLandmarkDecomposeCell.cup"
#import "ArabicTight.cup"
#import "Masonry.cup"

@implementation AskYouLuminanceLandmarkDecomposeCell

-(id)initRestStyle:(UITableViewCellStyle)style albumIdentifier:(NSString *)albumIdentifier{
    self = [super initRestStyle:style albumIdentifier:albumIdentifier];
    if(self){
        
        self.backgroundColor = UIColor.whiteColor;
        self.failCutView.backgroundColor = UIColor.whiteColor;
        self.selectionStyle = UITableViewCellSelectionStyleNone;
        
        
        self.watchPinchView = [UIImageView new];
        self.watchPinchView.tintColor = [ArabicTight majorPlanColor];
        self.watchPinchView.layer.cornerRadius = 15;
        [self.failCutView addSubview:self.watchPinchView];
        [self.watchPinchView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(ArabicTight.rowSoundPlug.oneYearsZone);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(ArabicTight.rowSoundPlug.manEraScalar);
        }];
        
        
        self.notationName = [UILabel new];
        self.notationName.font = [UIFont boldSystemFontOfSize:16];
        self.notationName.textColor = UIColor.darkGrayColor;
        [self.failCutView addSubview:self.notationName];
        [self.notationName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.watchPinchView.mas_right).offset(ArabicTight.rowSoundPlug.oneYearsZone);
            make.bottom.equalTo(self.failCutView.mas_centerY);
        }];
        
        
        self.notVersionsTime = [UILabel new];
        self.notVersionsTime.font =  [UIFont systemFontOfSize:11];
        self.notVersionsTime.textColor = UIColor.grayColor;
        [self.failCutView addSubview:self.notVersionsTime];
        [self.notVersionsTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.failCutView.mas_centerY).offset(ArabicTight.rowSoundPlug.hallDryMenu);
            make.left.equalTo(self.notationName);
        }];
    }
    return self;
}

@end
