12345678910111213141516171819202122232425 |
- //
- // RQExerciseToolBarView.m
- // JSJP
- //
- // Created by 张嵘 on 2021/8/16.
- //
- #import "RQExerciseToolBarView.h"
- @interface RQExerciseToolBarView ()
- @end
- @implementation RQExerciseToolBarView
- + (instancetype)exerciseToolBarView {
- return [super rq_viewFromXib];
- }
- - (void)awakeFromNib {
- [super awakeFromNib];
- self.layer.shadowColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.16].CGColor;
- self.handInBtn.layer.cornerRadius = RQ_FIT_HORIZONTAL(22.f) / 2.f;
- }
- @end
|