RQHandInThePaperView.m 725 B

12345678910111213141516171819202122232425
  1. //
  2. // RQHandInThePaperView.m
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/24.
  6. //
  7. #import "RQHandInThePaperView.h"
  8. @implementation RQHandInThePaperView
  9. + (instancetype)handInThePaperView {
  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. [self.lastQuestionBtn layoutButtonWithEdgeInsetsStyle:RQButtonEdgeInsetsStyleTop imageTitleSpace:5.f];
  16. [self.nextQuestionBtn layoutButtonWithEdgeInsetsStyle:RQButtonEdgeInsetsStyleTop imageTitleSpace:5.f];
  17. [self.totalNumberOfQuestionsBtn layoutButtonWithEdgeInsetsStyle:RQButtonEdgeInsetsStyleTop imageTitleSpace:5.f];
  18. }
  19. @end