// // DialCollectionReusableView.m // tongxin // // Created by ecell on 2023/3/24. // Copyright © 2023 xTT. All rights reserved. // #import "DialCollectionReusableView.h" @interface DialCollectionReusableView () @property (nonatomic ,weak) UILabel *titleLabel; @end @implementation DialCollectionReusableView - (instancetype)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { self.frame = [UIScreen mainScreen].bounds; [self subHeadView]; } return self; } - (void)setTitleStr:(NSString *)titleStr { _titleStr = titleStr; self.titleLabel.text = titleStr; } - (void)subHeadView { UILabel *titleLabel = [UILabel new]; titleLabel.textColor = UIColor.blackColor; titleLabel.font = [UIFont fontWithName:@"HelveticaNeue" size: 18]; self.titleLabel = titleLabel; [self addSubview:titleLabel]; [titleLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self).offset(10); make.centerY.equalTo(self); }]; } @end