// // RQErrorExerciseToolBarView.m // SDJK // // Created by 张嵘 on 2022/5/20. // #import "RQErrorExerciseToolBarView.h" @implementation RQErrorExerciseToolBarView + (instancetype)errorExerciseToolBarView { return [super rq_viewFromXib]; } - (void)awakeFromNib { [super awakeFromNib]; self.layer.shadowColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.16].CGColor; } @end