// // RQLearningMaterialsDetailFooterView.m // SDJK // // Created by 张嵘 on 2022/7/1. // #import "RQLearningMaterialsDetailFooterView.h" @implementation RQLearningMaterialsDetailFooterView + (instancetype)learningMaterialsDetailFooterView { return [self rq_viewFromXib]; } - (void)awakeFromNib { [super awakeFromNib]; _nextBtn.imagePosition = QMUIButtonImagePositionRight; self.layer.shadowColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.16].CGColor; self.layer.cornerRadius = RQ_FIT_HORIZONTAL(54.f) / 2.f; } @end