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