123456789101112131415161718192021222324252627282930 |
- //
- // ModelTVHeaderView.m
- // JSJPCoach
- //
- // Created by apple on 2017/3/23.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import "ModelTVHeaderView.h"
- @implementation ModelTVHeaderView
- // Only override drawRect: if you perform custom drawing.
- // An empty implementation adversely affects performance during animation.
- - (void)drawRect:(CGRect)rect {
-
- self.textLabel.frame = self.contentView.frame;
-
- [self.textLabel setFont:[UIFont scaleSize:Font17]];
- [self.textLabel setTextColor:newTitleColor];
- [self.textLabel setTextAlignment:NSTextAlignmentCenter];
- }
- -(void)layoutSubviews
- {
- [super layoutSubviews];
- self.textLabel.y = 2.5;
- }
- @end
|