RQExerciseToolBarView.m 510 B

12345678910111213141516171819202122232425
  1. //
  2. // RQExerciseToolBarView.m
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/8/16.
  6. //
  7. #import "RQExerciseToolBarView.h"
  8. @interface RQExerciseToolBarView ()
  9. @end
  10. @implementation RQExerciseToolBarView
  11. + (instancetype)exerciseToolBarView {
  12. return [super rq_viewFromXib];
  13. }
  14. - (void)awakeFromNib {
  15. [super awakeFromNib];
  16. self.layer.shadowColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.16].CGColor;
  17. self.handInBtn.layer.cornerRadius = RQ_FIT_HORIZONTAL(22.f) / 2.f;
  18. }
  19. @end