Files
my_yuyin/QXLive/Mine(音域)/View/个人主页/相册/QXPhotosSectionView.m
2025-09-22 18:48:29 +08:00

27 lines
589 B
Objective-C

//
// QXPhotosSectionView.m
// QXLive
//
// Created by 启星 on 2025/6/5.
//
#import "QXPhotosSectionView.h"
@implementation QXPhotosSectionView
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
[self initSubviews];
}
return self;
}
-(void)initSubviews{
self.titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(16, 0, self.width-32, self.height)];
self.titleLabel.font = [UIFont boldSystemFontOfSize:16];
self.titleLabel.textColor = QXConfig.textColor;
[self addSubview:self.titleLabel];
}
@end