RQAboutUsHeaderView.m 495 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RQAboutUsHeaderView.m
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/9/16.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQAboutUsHeaderView.h"
  9. @interface RQAboutUsHeaderView ()
  10. /// versionLabel
  11. @property (weak, nonatomic) IBOutlet UILabel *versionLabel;
  12. @end
  13. @implementation RQAboutUsHeaderView
  14. - (void)awakeFromNib{
  15. [super awakeFromNib];
  16. /// 版本
  17. self.versionLabel.text = [NSString stringWithFormat:@"极速驾培 %@" , RQ_APP_VERSION];
  18. }
  19. @end