// // YOUPAILZMusicLyricCell.m // VQU // // Created by CY on 2021/6/26. // Copyright © 2021 leo. All rights reserved. // #import "YOUPAILZMusicLyricCell.h" @implementation YOUPAILZMusicLyricCell - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{ if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) { self.backgroundColor = [UIColor clearColor]; self.selectionStyle = UITableViewCellSelectionStyleNone; [self youpaifinitUI]; } return self; } - (void)youpaifinitUI{ UILabel *youpaiptextL = [[UILabel alloc] init]; youpaiptextL.textColor = [UIColor whiteColor]; youpaiptextL.font = LCFont14; [self.contentView addSubview:youpaiptextL]; self.youpaiptextL = youpaiptextL; [youpaiptextL mas_makeConstraints:^(MASConstraintMaker *make) { make.left.right.top.bottom.offset(0.0f); }]; } @end