27 lines
589 B
Mathematica
27 lines
589 B
Mathematica
|
|
//
|
||
|
|
// 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
|