RQErrorExerciseToolBarView.m 422 B

12345678910111213141516171819202122
  1. //
  2. // RQErrorExerciseToolBarView.m
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/5/20.
  6. //
  7. #import "RQErrorExerciseToolBarView.h"
  8. @implementation RQErrorExerciseToolBarView
  9. + (instancetype)errorExerciseToolBarView {
  10. return [super rq_viewFromXib];
  11. }
  12. - (void)awakeFromNib {
  13. [super awakeFromNib];
  14. self.layer.shadowColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.16].CGColor;
  15. }
  16. @end