RQLearningMaterialsDetailFooterView.m 572 B

123456789101112131415161718192021222324
  1. //
  2. // RQLearningMaterialsDetailFooterView.m
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/7/1.
  6. //
  7. #import "RQLearningMaterialsDetailFooterView.h"
  8. @implementation RQLearningMaterialsDetailFooterView
  9. + (instancetype)learningMaterialsDetailFooterView {
  10. return [self rq_viewFromXib];
  11. }
  12. - (void)awakeFromNib {
  13. [super awakeFromNib];
  14. _nextBtn.imagePosition = QMUIButtonImagePositionRight;
  15. self.layer.shadowColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.16].CGColor;
  16. self.layer.cornerRadius = RQ_FIT_HORIZONTAL(54.f) / 2.f;
  17. }
  18. @end